diff --git a/README.md b/README.md index 07d2b27a1a..667b73930a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/app/build.gradle b/app/build.gradle index c4fd68f158..3ba5c399e9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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']) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 1171f74494..17b22e4350 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -49,6 +49,14 @@ android:name="android.allow_multiple_resumed_activities" android:value="true" /> + + + +