forked from Blankj/AndroidUtilCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module_config.json
30 lines (30 loc) · 2.81 KB
/
module_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"desc": "提交 git 时需要检查下配置是否正确!!!",
"appConfigDesc": "appConfig 配置的是可以跑 app 的模块",
"appConfig": ["feature_launcher_app"],
"pkgConfigDesc": "pkgConfig 配置的是要依赖的功能包,为空则依赖全部",
"pkgConfig": [],
"moduleConfigDesc": "moduleConfig 配置的是使用本地还是仓库,优先级低于 appConfig 和 pkgConfig",
"moduleConfig": [
{"name": "plugin_api_gradle_plugin", "isApply": true, "useLocal": true, "localPath": "./plugin/api-gradle-plugin"},
{"name": "plugin_bus_gradle_plugin", "isApply": true, "useLocal": true, "localPath": "./plugin/bus-gradle-plugin"},
{"name": "plugin_lib_base_transform", "isApply": true, "useLocal": true, "localPath": "./plugin/lib/base-transform", "remotePath": "com.blankj:base-transform:1.0"},
{"name": "plugin_buildSrc_plugin", "isApply": true, "useLocal": true, "localPath": "./plugin/buildSrc-plugin"},
{"name": "feature_mock", "isApply": true, "useLocal": true, "localPath": "./feature/mock"},
{"name": "feature_launcher_app", "isApply": true, "useLocal": true, "localPath": "./feature/launcher/app"},
{"name": "feature_main_app", "isApply": true, "useLocal": true, "localPath": "./feature/main/app"},
{"name": "feature_main_pkg", "isApply": true, "useLocal": true, "localPath": "./feature/main/pkg"},
{"name": "feature_subutil_app", "isApply": true, "useLocal": true, "localPath": "./feature/subutil/app"},
{"name": "feature_subutil_pkg", "isApply": true, "useLocal": true, "localPath": "./feature/subutil/pkg"},
{"name": "feature_subutil_export", "isApply": true, "useLocal": true, "localPath": "./feature/subutil/export"},
{"name": "feature_utilcode_app", "isApply": true, "useLocal": true, "localPath": "./feature/utilcode/app"},
{"name": "feature_utilcode_pkg", "isApply": true, "useLocal": true, "localPath": "./feature/utilcode/pkg"},
{"name": "feature_utilcode_export", "isApply": true, "useLocal": true, "localPath": "./feature/utilcode/export", "remotePath": "com.blankj:utilcode-export:1.1"},
{"name": "lib_base", "isApply": true, "useLocal": true, "localPath": "./lib/base"},
{"name": "lib_common", "isApply": true, "useLocal": true, "localPath": "./lib/common"},
{"name": "lib_subutil", "isApply": true, "useLocal": true, "localPath": "./lib/subutil"},
{"name": "lib_utilcode", "isApply": true, "useLocal": false, "localPath": "./lib/utilcode", "remotePath": "com.blankj:utilcodex:$Config.versionName"},
{"name": "lib_utildebug", "isApply": true, "useLocal": true, "localPath": "./lib/utildebug"},
{"name": "lib_utildebug_no_op", "isApply": true, "useLocal": true, "localPath": "./lib/utildebug-no-op"}
]
}