Added exclude for detectNonSdkApiUsage

This commit is contained in:
M66B 2021-03-25 21:28:53 +01:00
parent 8ba69b4156
commit 6e154d2b33
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}