summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2022-10-02 11:55:34 +0200
committerGitHub <noreply@github.com>2022-10-02 11:55:34 +0200
commita621551658372877331fbf0ae3ed50acc2bb9abf (patch)
tree199aff1d02937e41af80889705de64adb23e07b5
parent18e5e89d12c4040474940de0362667b4b3d081d8 (diff)
parent07b4a237f6bb1c7d7f10fd947122380f038636cb (diff)
downloadAntennaPod-a621551658372877331fbf0ae3ed50acc2bb9abf.zip
Merge pull request #6090 from TacoTheDank/removePreDex
Remove old preDexLibs code in build.gradle
-rw-r--r--build.gradle15
1 files changed, 0 insertions, 15 deletions
diff --git a/build.gradle b/build.gradle
index b2ce372dc..000cf1804 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,21 +19,6 @@ allprojects {
}
}
-// Disable predex if requested (we can"t predex in Circle CI
-// See http://tools.android.com/tech-docs/new-build-system/tips#TOC-Improving-Build-Server-performance
-// and https://circleci.com/docs/android
-project.ext.preDexLibs = !project.hasProperty("disablePreDex")
-
-subprojects {
- project.plugins.whenPluginAdded { plugin ->
- if ("com.android.build.gradle.AppPlugin" == plugin.class.name) {
- project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
- } else if ("com.android.build.gradle.LibraryPlugin" == plugin.class.name) {
- project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
- }
- }
-}
-
project.ext {
// AndroidX
annotationVersion = "1.2.0"