1
0
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:
Torvin 2019-06-21 00:04:52 +12:00
parent 8451179926
commit c33e8d8809
4 changed files with 7 additions and 6 deletions

View File

@ -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',

View File

@ -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

View File

@ -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()
}

View File

@ -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)