Added exclude for detectNonSdkApiUsage

pull/196/head
M66B 4 years ago
parent 8ba69b4156
commit 6e154d2b33

@ -111,7 +111,8 @@ public class ApplicationEx extends Application
for (StackTraceElement ste : stack) {
String clazz = ste.getClassName();
if (clazz != null &&
clazz.startsWith("com.android.webview.chromium"))
(clazz.startsWith("com.android.webview.chromium") ||
clazz.startsWith("androidx.appcompat.widget")))
return;
}

Loading…
Cancel
Save