Merge pull request #7014 from vector-im/feature/bma/fix_fdroid_crash

Feature/bma/fix fdroid crash
This commit is contained in:
Benoit Marty 2022-09-05 20:45:29 +02:00 committed by GitHub
commit f54d792bbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 12 deletions

View File

@ -340,10 +340,6 @@ android {
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
]
}
buildFeatures {
viewBinding true
}
}
dependencies {

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application android:name="im.vector.app.VectorApplication">
<application>
<!-- Firebase components -->
<meta-data

View File

@ -4,6 +4,7 @@
package="im.vector.application">
<application
android:name="im.vector.app.VectorApplication"
android:allowBackup="false"
android:hasFragileUserData="true"
android:icon="@mipmap/ic_launcher"

View File

@ -78,17 +78,10 @@ android {
productFlavors {
gplay {
dimension "store"
isDefault = true
buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"G\""
buildConfigField "String", "FLAVOR_DESCRIPTION", "\"GooglePlay\""
}
fdroid {
dimension "store"
buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"F\""
buildConfigField "String", "FLAVOR_DESCRIPTION", "\"FDroid\""
}
}