Disable Bugsnag ANR reporting

This commit is contained in:
M66B 2019-09-14 13:04:48 +02:00
parent 37f683a421
commit 43302faf72
3 changed files with 2 additions and 10 deletions

View File

@ -277,7 +277,7 @@ dependencies {
// https://github.com/bugsnag/bugsnag-android
implementation("com.bugsnag:bugsnag-android:$bugsnag_version") {
//exclude group: "com.bugsnag", module: "bugsnag-plugin-android-anr"
exclude group: "com.bugsnag", module: "bugsnag-plugin-android-anr"
exclude group: "com.bugsnag", module: "bugsnag-plugin-android-ndk"
}

View File

@ -49,14 +49,6 @@
android:name="android.allow_multiple_resumed_activities"
android:value="true" />
<!-- Bugsnag -->
<meta-data
android:name="com.bugsnag.android.DETECT_ANRS"
android:value="false" />
<meta-data
android:name="com.bugsnag.android.DETECT_NDK_CRASHES"
android:value="false" />
<activity
android:name=".ActivityMain"
android:excludeFromRecents="true"

View File

@ -166,7 +166,7 @@ public class Log {
config.setAutoCaptureSessions(false);
config.setDetectAnrs(true);
config.setDetectAnrs(false);
config.setDetectNdkCrashes(false);
List<String> ignore = new ArrayList<>();