Files
MoGoEagleEye/gradle/bytex/bytex_lancetx.gradle
2023-12-13 15:56:09 +08:00

39 lines
802 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"
]
synchronizedLock {
enabled rootProject.isJunkDetectEnable()
blackList = [
"okio.AsyncTimeout\$Watchdog"
]
}
weaveGroup {
crash_fix {
enable true
}
memory_leak {
enable true
}
textview_opt {
enable true
}
window_callback {
enable true
}
main_block_check {
enable rootProject.isJunkDetectEnable()
}
view_pressed_state {
enable false
}
}
}