mirror of
https://github.com/TwidereProject/Twidere-Android
synced 2025-01-31 17:04:59 +01:00
upgrade Kotlin version
This commit is contained in:
parent
8451179926
commit
c33e8d8809
@ -4,9 +4,10 @@ buildscript {
|
||||
jcenter()
|
||||
maven { url 'https://plugins.gradle.org/m2/' }
|
||||
maven { url 'https://maven.google.com' }
|
||||
google()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.0.0'
|
||||
classpath 'com.android.tools.build:gradle:3.3.2'
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
}
|
||||
@ -35,7 +36,7 @@ allprojects {
|
||||
subprojects {
|
||||
buildscript {
|
||||
ext {
|
||||
kotlinVersion = '1.1.51'
|
||||
kotlinVersion = '1.3.0'
|
||||
pluginVersions = [
|
||||
AndroidSvgDrawable: '3.0.0',
|
||||
PlayServices : '3.1.1',
|
||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
|
||||
|
@ -1372,7 +1372,7 @@ class ComposeActivity : BaseActivity(), OnMenuItemClickListener, OnClickListener
|
||||
menu.setItemAvailability(R.id.attachment_visibility_submenu, hasAttachmentStatusVisibility)
|
||||
menu.setItemAvailability(R.id.location_submenu, hasLocationOption)
|
||||
|
||||
ThemeUtils.wrapMenuIcon(menuBar, excludeGroups = MENU_GROUP_IMAGE_EXTENSION)
|
||||
ThemeUtils.wrapMenuIcon(menuBar, excludeGroups = *intArrayOf(MENU_GROUP_IMAGE_EXTENSION))
|
||||
ThemeUtils.resetCheatSheet(menuBar)
|
||||
}
|
||||
|
||||
@ -1510,7 +1510,7 @@ class ComposeActivity : BaseActivity(), OnMenuItemClickListener, OnClickListener
|
||||
return
|
||||
}
|
||||
|
||||
LengthyOperationsService.updateStatusesAsync(this, update.draft_action, statuses = update,
|
||||
LengthyOperationsService.updateStatusesAsync(this, update.draft_action, statuses = *arrayOf(update),
|
||||
scheduleInfo = scheduleInfo)
|
||||
finishComposing()
|
||||
}
|
||||
|
@ -468,7 +468,7 @@ class DetailStatusViewHolder(
|
||||
retweetProvider.init(itemView.menuBar, retweetItem)
|
||||
}
|
||||
|
||||
ThemeUtils.wrapMenuIcon(itemView.menuBar, excludeGroups = Constants.MENU_GROUP_STATUS_SHARE)
|
||||
ThemeUtils.wrapMenuIcon(itemView.menuBar, excludeGroups = *intArrayOf(Constants.MENU_GROUP_STATUS_SHARE))
|
||||
itemView.mediaPreviewLoad.setOnClickListener(this)
|
||||
itemView.profileContainer.setOnClickListener(this)
|
||||
retweetedByView.setOnClickListener(this)
|
||||
|
Loading…
x
Reference in New Issue
Block a user