13 lines
528 B
Groovy
13 lines
528 B
Groovy
// bugly 上报,目前仅在debug编译下加载bugly
|
||
|
||
project.dependencies {
|
||
if (Boolean.valueOf(RELEASE)) {
|
||
implementation rootProject.ext.dependencies.crashreport
|
||
debugImplementation rootProject.ext.dependencies.crashreportbugly
|
||
releaseImplementation rootProject.ext.dependencies.crashreportnoop
|
||
} else {
|
||
implementation project(':test:crashreport')
|
||
debugImplementation project(':test:crashreport-bugly')
|
||
releaseImplementation project(':test:crashreport-noop')
|
||
}
|
||
} |