summaryrefslogtreecommitdiff
path: root/build-system/gradle-core/src/main/java/com/android/build/gradle/internal/core/dsl/impl/features/DexingDslInfoImpl.kt
diff options
context:
space:
mode:
Diffstat (limited to 'build-system/gradle-core/src/main/java/com/android/build/gradle/internal/core/dsl/impl/features/DexingDslInfoImpl.kt')
-rw-r--r--build-system/gradle-core/src/main/java/com/android/build/gradle/internal/core/dsl/impl/features/DexingDslInfoImpl.kt9
1 files changed, 1 insertions, 8 deletions
diff --git a/build-system/gradle-core/src/main/java/com/android/build/gradle/internal/core/dsl/impl/features/DexingDslInfoImpl.kt b/build-system/gradle-core/src/main/java/com/android/build/gradle/internal/core/dsl/impl/features/DexingDslInfoImpl.kt
index f8c82beef6..7b3aa9f59c 100644
--- a/build-system/gradle-core/src/main/java/com/android/build/gradle/internal/core/dsl/impl/features/DexingDslInfoImpl.kt
+++ b/build-system/gradle-core/src/main/java/com/android/build/gradle/internal/core/dsl/impl/features/DexingDslInfoImpl.kt
@@ -20,14 +20,11 @@ import com.android.build.api.dsl.ApplicationBuildType
import com.android.build.api.dsl.BuildType
import com.android.build.gradle.internal.core.MergedFlavor
import com.android.build.gradle.internal.core.dsl.features.DexingDslInfo
-import com.android.build.gradle.internal.services.BaseServices
-import com.android.build.gradle.options.IntegerOption
import java.io.File
class DexingDslInfoImpl(
private val buildTypeObj: BuildType,
- private val mergedFlavor: MergedFlavor,
- private val services: BaseServices
+ private val mergedFlavor: MergedFlavor
): DexingDslInfo {
// Only require specific multidex opt-in for legacy multidex.
@@ -55,8 +52,4 @@ class DexingDslInfoImpl(
value = mergedFlavor.multiDexKeepFile
return value
}
-
- // TODO: move to global scope
- override val targetDeployApiFromIDE: Int? =
- services.projectOptions.get(IntegerOption.IDE_TARGET_DEVICE_API)
}