update(Kotlin): 升级Kotlin版本

Kotlin: 1.4.32 -> 1.5.10
Coroutines: 1.4.3 -> 1.5.0
This commit is contained in:
Quyunshuo
2021-07-10 22:48:31 +08:00
parent b81b8b01aa
commit 1f473c7146
2 changed files with 4 additions and 4 deletions

View File

@ -31,8 +31,8 @@ object DependencyConfig {
const val Material = "1.2.0" // 材料设计UI套件
// Kotlin----------------------------------------------------------------
const val Kotlin = "1.4.32"
const val Coroutines = "1.4.3" // 协程
const val Kotlin = "1.5.10"
const val Coroutines = "1.5.0" // 协程
// JetPack---------------------------------------------------------------
const val Lifecycle = "2.3.1" // Lifecycle相关ViewModel & LiveData & Lifecycle

View File

@ -7,8 +7,8 @@ package com.quyunshuo.androidbaseframemvvm.buildsrc
* @since 4/24/21 5:56 PM
*/
object ProjectPluginManager {
const val AndroidToolsPlugin = "com.android.tools.build:gradle:4.1.3"
const val KotlinPlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.32"
const val AndroidToolsPlugin = "com.android.tools.build:gradle:4.2.1"
const val KotlinPlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10"
const val ARouterRegister = "com.alibaba:arouter-register:1.0.2"
const val HiltPlugin = "com.google.dagger:hilt-android-gradle-plugin:2.35.1"
}