We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49ea13 commit 4a8df89Copy full SHA for 4a8df89
1 file changed
app/src/main/kotlin/io/github/revenge/xposed/modules/no_track/BlockCrashReportingModule.kt
@@ -24,10 +24,13 @@ object BlockCrashReportingModule : Module() {
24
}
25
26
27
- hookMethod("isDisabled") {
28
- before {
29
- Log.i("Forced CrashReporting.isDisabled() to true")
30
- result = true
+ // This only exists on 30720x and above
+ runCatching {
+ hookMethod("isDisabled") {
+ before {
31
+ Log.i("Forced CrashReporting.isDisabled() to true")
32
+ result = true
33
+ }
34
35
36
0 commit comments