summaryrefslogtreecommitdiff
path: root/common.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'common.gradle')
-rw-r--r--common.gradle14
1 files changed, 4 insertions, 10 deletions
diff --git a/common.gradle b/common.gradle
index 4f023212b..2bfbb2f61 100644
--- a/common.gradle
+++ b/common.gradle
@@ -1,11 +1,11 @@
android {
- compileSdkVersion 31
+ compileSdk 31
defaultConfig {
- minSdkVersion 19
- targetSdkVersion 30
+ minSdk 19
+ targetSdk 30
- multiDexEnabled false
+ multiDexEnabled true
vectorDrawables.useSupportLibrary true
vectorDrawables.generatedDensities = []
@@ -18,12 +18,6 @@ android {
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard.cfg"
}
debug {
- // debug build has method count over 64k single-dex threshold.
- // For building debug build to use on Android < 21 (pre-Android 5) devices,
- // you need to manually change class
- // de.danoeh.antennapod.PodcastApp to extend MultiDexApplication .
- // See Issue #2813
- multiDexEnabled true
}
}