@@ -14,8 +14,8 @@ class Config {
14
14
static compileSdkVersion = 29
15
15
static minSdkVersion = 14
16
16
static targetSdkVersion = 29
17
- static versionCode = 1_028_002
18
- static versionName = ' 1.28.4 ' // E.g. 1.9.72 => 1,009,072
17
+ static versionCode = 1_028_005
18
+ static versionName = ' 1.28.5 ' // E.g. 1.9.72 => 1,009,072
19
19
20
20
// lib version
21
21
static gradlePluginVersion = ' 3.5.0'
@@ -25,9 +25,9 @@ class Config {
25
25
static depConfig = [
26
26
/* Never delete this line*/
27
27
/* Generated by "config.json"*/
28
- plugin_api_gradle_plugin : new DepConfig (false , true , " :plugin:api-gradle-plugin" ),
29
- plugin_bus_gradle_plugin : new DepConfig (false , true , " :plugin:bus-gradle-plugin" ),
30
- plugin_lib_base_transform : new DepConfig (false , true , " :plugin:lib:base-transform" , " com.blankj:base-transform:1.0" ),
28
+ plugin_api_gradle_plugin : new DepConfig (true , true , " :plugin:api-gradle-plugin" ),
29
+ plugin_bus_gradle_plugin : new DepConfig (true , true , " :plugin:bus-gradle-plugin" ),
30
+ plugin_lib_base_transform : new DepConfig (true , false , " :plugin:lib:base-transform" , " com.blankj:base-transform:1.0" ),
31
31
feature_mock : new DepConfig (false , true , " :feature:mock" ),
32
32
feature_launcher_app : new DepConfig (true , true , " :feature:launcher:app" ),
33
33
feature_main_app : new DepConfig (false , true , " :feature:main:app" ),
@@ -53,12 +53,12 @@ class Config {
53
53
54
54
// 上传新版本插件更新 pluginPath 中的版本号,并设置 isApply = false
55
55
// 通过 mavenLocal 上传本地版本,设置 isApply = true 即可应用插件来调试,最后通过 bintrayUpload 来发布插件
56
- plugin_api : new DepConfig (isApply : true , useLocal : false , pluginPath : " com.blankj:api-gradle-plugin:1.3 " , pluginId : " com.blankj.api" ),
57
- // ./gradlew clean plugin :plugin_api-gradle-plugin:mavenLocal // 上传到本地 mavenLocal
58
- // ./gradlew clean plugin :plugin_api-gradle-plugin:bintrayUpload // 上传到 jcenter
59
- plugin_bus : new DepConfig (isApply : true , useLocal : false , pluginPath : " com.blankj:bus-gradle-plugin:2.5 " , pluginId : " com.blankj.bus" ),
60
- // ./gradlew clean plugin :plugin_bus-gradle-plugin:mavenLocal // 上传到本地 mavenLocal
61
- // ./gradlew clean plugin :plugin_bus-gradle-plugin:bintrayUpload // 上传到 jcenter
56
+ plugin_api : new DepConfig (isApply : true , useLocal : false , pluginPath : " com.blankj:api-gradle-plugin:1.4 " , pluginId : " com.blankj.api" ),
57
+ // ./gradlew clean :plugin_api-gradle-plugin:mavenLocal // 上传到本地 mavenLocal
58
+ // ./gradlew clean :plugin_api-gradle-plugin:bintrayUpload // 上传到 jcenter
59
+ plugin_bus : new DepConfig (isApply : true , useLocal : false , pluginPath : " com.blankj:bus-gradle-plugin:2.6 " , pluginId : " com.blankj.bus" ),
60
+ // ./gradlew clean :plugin_bus-gradle-plugin:mavenLocal // 上传到本地 mavenLocal
61
+ // ./gradlew clean :plugin_bus-gradle-plugin:bintrayUpload // 上传到 jcenter
62
62
63
63
support_appcompat_v7 : new DepConfig (" com.android.support:appcompat-v7:$supportVersion " ),
64
64
support_design : new DepConfig (" com.android.support:design:$supportVersion " ),
@@ -86,4 +86,4 @@ class Config {
86
86
test_robolectric : new DepConfig (" org.robolectric:robolectric:4.3.1" ),
87
87
]
88
88
}
89
- // ./gradlew clean lib :lib_utilcode:bintrayUpload
89
+ // ./gradlew clean :lib_utilcode:bintrayUpload
0 commit comments