Skip to content

Commit 00b634c

Browse files
committed
see 11/30 log
1 parent e8f4c74 commit 00b634c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

buildSrc/src/main/groovy/Config.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ class Config {
2525
static depConfig = [
2626
/*Never delete this line*/
2727
/*Generated by "config.json"*/
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"),
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"),
3030
feature_mock : new DepConfig(false, true, ":feature:mock"),
3131
feature_launcher_app : new DepConfig(true, true, ":feature:launcher:app"),
3232
feature_main_app : new DepConfig(false, true, ":feature:main:app"),
@@ -54,7 +54,7 @@ class Config {
5454
// 本地上传成功之后 isApply = true 即可应用插件来调试,后续版本更新无需设置 isApply = false
5555
// 发布版本的话把 isApply = false, useLocal = false,更新版本号,发布成功后 isApply = true 即可使用远程库版本
5656
plugin_api : new DepConfig(isApply: true, useLocal: false, pluginPath: "com.blankj:api-gradle-plugin:1.2", pluginId: "com.blankj.api"),
57-
plugin_bus : new DepConfig(isApply: false, useLocal: false, pluginPath: "com.blankj:bus-gradle-plugin:2.4", pluginId: "com.blankj.bus"),
57+
plugin_bus : new DepConfig(isApply: true, useLocal: false, pluginPath: "com.blankj:bus-gradle-plugin:2.4", pluginId: "com.blankj.bus"),
5858

5959
support_appcompat_v7 : new DepConfig("com.android.support:appcompat-v7:$support_version"),
6060
support_design : new DepConfig("com.android.support:design:$support_version"),

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"pkgConfig": [],
66
"proConfigDesc": "proConfig 配置的是使用本地还是仓库,优先级低于 appConfig 和 pkgConfig",
77
"proConfig": [
8-
{"isApply": true, "useLocal": true, "localPath": ":plugin:api-gradle-plugin"},
9-
{"isApply": true, "useLocal": true, "localPath": ":plugin:bus-gradle-plugin"},
8+
{"isApply": false, "useLocal": true, "localPath": ":plugin:api-gradle-plugin"},
9+
{"isApply": false, "useLocal": true, "localPath": ":plugin:bus-gradle-plugin"},
1010
{"isApply": true, "useLocal": true, "localPath": ":feature:mock"},
1111
{"isApply": true, "useLocal": true, "localPath": ":feature:launcher:app"},
1212
{"isApply": true, "useLocal": true, "localPath": ":feature:main:app"},

0 commit comments

Comments
 (0)