23 lines
437 B
Groovy
23 lines
437 B
Groovy
if (!rootProject.isAndroidTestBuild()) {
|
|
apply plugin: 'LancetX'
|
|
LancetX {
|
|
enable true
|
|
enableInDebug true
|
|
weaveGroup {
|
|
anr_fix {
|
|
enable true
|
|
}
|
|
crash_fix {
|
|
enable true
|
|
}
|
|
memory_leak {
|
|
enable true
|
|
}
|
|
textview_opt {
|
|
enable true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|