mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 01:36:55 +00:00
Updated Bugsnag config
This commit is contained in:
parent
2f635d582d
commit
42bf645ae6
3 changed files with 16 additions and 1 deletions
|
@ -36,7 +36,7 @@ This app starts a foreground service with a low priority status bar notification
|
|||
* Offline storage and operations
|
||||
* Battery friendly
|
||||
* Low data usage
|
||||
* Small (~7 MB)
|
||||
* Small (< 10 MB)
|
||||
* Material design
|
||||
* Maintained and supported
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|||
|
||||
android {
|
||||
compileSdkVersion 29
|
||||
|
||||
defaultConfig {
|
||||
applicationId "eu.faircode.email"
|
||||
minSdkVersion 21
|
||||
|
@ -24,7 +25,13 @@ android {
|
|||
|
||||
// https://developer.android.com/guide/topics/graphics/vector-drawable-resources
|
||||
vectorDrawables.useSupportLibrary = true
|
||||
|
||||
ndk {
|
||||
// Bugsnag
|
||||
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
|
||||
}
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
storeFile file(keystoreProperties['storeFile'])
|
||||
|
|
|
@ -49,6 +49,14 @@
|
|||
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"
|
||||
|
|
Loading…
Reference in a new issue