@@ -11,17 +11,16 @@ class Config {
1111 static applicationId = ' com.blankj.androidutilcode'
1212 static appName = ' Util'
1313
14- static compileSdkVersion = 28
14+ static compileSdkVersion = 29
1515 static minSdkVersion = 14
16- static targetSdkVersion = 28
16+ static targetSdkVersion = 29
1717 static versionCode = 1_026_001
18- static versionName = ' 1.26.1-alpha0 ' // E.g. 1.9.72 => 1,009,072
18+ static versionName = ' 1.26.1-alpha3 ' // E.g. 1.9.72 => 1,009,072
1919
2020 // lib version
21- static gradlePluginVersion = ' 3.5.2 '
21+ static gradlePluginVersion = ' 3.5.0 '
2222 static kotlinVersion = ' 1.3.50'
2323 static supportVersion = ' 28.0.0'
24- static leakcanaryVersion = ' 1.6.3'
2524
2625 static depConfig = [
2726 /* Never delete this line*/
@@ -54,10 +53,10 @@ class Config {
5453 // 本地第一次上传插件新的版本需设置 isApply = false, useLocal = true
5554 // 本地上传成功之后 isApply = true 即可应用插件来调试,后续版本更新无需设置 isApply = false
5655 // 发布版本的话把 isApply = false, useLocal = false,更新版本号,发布成功后 isApply = true 即可使用远程库版本
57- plugin_api : new DepConfig (isApply : false , useLocal : true , pluginPath : " com.blankj:api-gradle-plugin:1.3-r4 " , pluginId : " com.blankj.api" ),
56+ plugin_api : new DepConfig (isApply : true , useLocal : false , pluginPath : " com.blankj:api-gradle-plugin:1.4-r1 " , pluginId : " com.blankj.api" ),
5857 // ./gradlew plugin:api-gradle-plugin:uploadArchives // 上传到本地 maven
5958 // ./gradlew plugin:api-gradle-plugin:bintrayUpload // 上传到 jcenter
60- plugin_bus : new DepConfig (isApply : true , useLocal : true , pluginPath : " com.blankj:bus-gradle-plugin:2.5 " , pluginId : " com.blankj.bus" ),
59+ plugin_bus : new DepConfig (isApply : true , useLocal : false , pluginPath : " com.blankj:bus-gradle-plugin:2.6-r2 " , pluginId : " com.blankj.bus" ),
6160 // ./gradlew plugin:bus-gradle-plugin:uploadArchives // 上传到本地 maven
6261 // ./gradlew plugin:bus-gradle-plugin:bintrayUpload // 上传到 jcenter
6362
@@ -68,9 +67,7 @@ class Config {
6867
6968 kotlin : new DepConfig (" org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion " ),
7069
71- leakcanary_android : new DepConfig (" com.squareup.leakcanary:leakcanary-android:$leakcanaryVersion " ),
72- leakcanary_android_no_op : new DepConfig (" com.squareup.leakcanary:leakcanary-android-no-op:$leakcanaryVersion " ),
73- leakcanary_support_fragment : new DepConfig (" com.squareup.leakcanary:leakcanary-support-fragment:$leakcanaryVersion " ),
70+ leakcanary_android : new DepConfig (" com.squareup.leakcanary:leakcanary-android:2.1" ),
7471
7572 free_proguard : new DepConfig (" com.blankj:free-proguard:1.0.2" ),
7673 swipe_panel : new DepConfig (" com.blankj:swipe-panel:1.2" ),
@@ -86,7 +83,7 @@ class Config {
8683 photo_view : new DepConfig (" com.github.chrisbanes:PhotoView:2.0.0" ),
8784
8885 test_junit : new DepConfig (" junit:junit:4.12" ),
89- test_robolectric : new DepConfig (" org.robolectric:robolectric:4.2 " ),
86+ test_robolectric : new DepConfig (" org.robolectric:robolectric:4.3.1 " ),
9087 ]
9188}
9289// ./gradlew clean :lib:utilcode:bintrayUpload
0 commit comments