Updated Bugsnag config

pull/156/head 1.544
M66B 6 years ago
parent 2f635d582d
commit 42bf645ae6

@ -36,7 +36,7 @@ This app starts a foreground service with a low priority status bar notification
* Offline storage and operations * Offline storage and operations
* Battery friendly * Battery friendly
* Low data usage * Low data usage
* Small (~7 MB) * Small (< 10 MB)
* Material design * Material design
* Maintained and supported * Maintained and supported

@ -8,6 +8,7 @@ keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
android { android {
compileSdkVersion 29 compileSdkVersion 29
defaultConfig { defaultConfig {
applicationId "eu.faircode.email" applicationId "eu.faircode.email"
minSdkVersion 21 minSdkVersion 21
@ -24,7 +25,13 @@ android {
// https://developer.android.com/guide/topics/graphics/vector-drawable-resources // https://developer.android.com/guide/topics/graphics/vector-drawable-resources
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
ndk {
// Bugsnag
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
} }
signingConfigs { signingConfigs {
release { release {
storeFile file(keystoreProperties['storeFile']) storeFile file(keystoreProperties['storeFile'])

@ -49,6 +49,14 @@
android:name="android.allow_multiple_resumed_activities" android:name="android.allow_multiple_resumed_activities"
android:value="true" /> 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 <activity
android:name=".ActivityMain" android:name=".ActivityMain"
android:excludeFromRecents="true" android:excludeFromRecents="true"

Loading…
Cancel
Save