Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/mumla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/build.gradle7
-rw-r--r--app/src/main/AndroidManifest.xml1
2 files changed, 6 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 702ce33..68ef2da 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -39,6 +39,7 @@ repositories {
}
dependencies {
+ implementation 'androidx.multidex:multidex:2.0.1'
implementation project(":libraries:humla")
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.cardview:cardview:1.0.0'
@@ -59,21 +60,23 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 29
+ multiDexEnabled true
+
applicationId "se.lublin.mumla"
versionCode 78
versionName "3.4.4"
+
setProperty("archivesBaseName", "mumla")
+
testInstrumentationRunner "android.test.InstrumentationTestRunner"
buildConfigField "boolean", "DONATE_NAG", "false"
}
buildTypes {
release {
- minifyEnabled false
if (signingFile.exists()) signingConfig signingConfigs.release
}
debug {
- minifyEnabled false
}
}
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index a7eff21..3816346 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -35,6 +35,7 @@
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
<application
+ android:name="androidx.multidex.MultiDexApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"