Updated bugsnag

pull/159/head
M66B 6 years ago
parent a70641c9cd
commit 145dc94e04

@ -149,7 +149,7 @@ dependencies {
def openpgp_version = "12.0"
def requery_version = "3.29.0"
def badge_version = "1.1.22"
def bugsnag_version = "4.15.0"
def bugsnag_version = "4.17.0"
def biweekly_version = "0.6.3"
def photoview_version = "2.3.0"
def relinker_version = "1.3.1"
@ -231,7 +231,10 @@ dependencies {
implementation "me.leolin:ShortcutBadger:$badge_version"
// https://github.com/bugsnag/bugsnag-android
implementation "com.bugsnag:bugsnag-android:$bugsnag_version"
implementation ("com.bugsnag:bugsnag-android:$bugsnag_version") {
exclude group: "com.bugsnag", module: "bugsnag-plugin-android-anr"
exclude group: "com.bugsnag", module: "bugsnag-plugin-android-ndk"
}
// https://github.com/mangstadt/biweekly
implementation("net.sf.biweekly:biweekly:$biweekly_version") {

@ -158,6 +158,7 @@ public class ApplicationEx extends Application {
config.setAutoCaptureSessions(false);
config.setDetectAnrs(false);
config.setDetectNdkCrashes(false);
List<String> ignore = new ArrayList<>();

Loading…
Cancel
Save