36 lines
751 B
Groovy
36 lines
751 B
Groovy
apply plugin: 'LancetX'
|
|
LancetX {
|
|
enable true
|
|
enableInDebug true
|
|
blackList = [
|
|
"com.mogo.launcher.lancet.jank",
|
|
"com.mogo.thread.opt.core",
|
|
"com.zhjt.mogo_core_function_devatools.perf",
|
|
"com.tencent.matrix"
|
|
]
|
|
synchronizedLock {
|
|
enabled false
|
|
blackList = [
|
|
"okio.AsyncTimeout\$Watchdog"
|
|
]
|
|
}
|
|
weaveGroup {
|
|
crash_fix {
|
|
enable true
|
|
}
|
|
textview_opt {
|
|
enable true
|
|
}
|
|
window_callback {
|
|
enable true
|
|
}
|
|
main_block_check {
|
|
enable rootProject.isJunkDetectEnable()
|
|
}
|
|
view_pressed_state {
|
|
enable true
|
|
}
|
|
}
|
|
}
|
|
|