Debug info: fixed crash

pull/213/head
M66B 1 year ago
parent 32b25dc835
commit a7bddc9a98

@ -1618,7 +1618,7 @@ public class Helper {
} }
} }
static Boolean getMIUIAutostart(Context context) { static boolean getMIUIAutostart(Context context) {
try { try {
Class<?> c = Class.forName("android.miui.AppOpsUtils"); Class<?> c = Class.forName("android.miui.AppOpsUtils");
Method m = c.getDeclaredMethod("getApplicationAutoStart", Context.class, String.class); Method m = c.getDeclaredMethod("getApplicationAutoStart", Context.class, String.class);
@ -1627,7 +1627,7 @@ public class Helper {
return (result != null && result.equals(0)); return (result != null && result.equals(0));
} catch (Throwable ex) { } catch (Throwable ex) {
Log.w(ex); Log.w(ex);
return null; return false;
} }
} }

Loading…
Cancel
Save