File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ android {
1212
1313 defaultConfig {
1414 targetSdkVersion(Config .Android .targetSdkVersion)
15+ minSdkVersion(Config .Android .minSdkVersion)
1516 javaCompileOptions {
1617 annotationProcessorOptions {
1718 includeCompileClasspath = true
@@ -20,8 +21,6 @@ android {
2021
2122 testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
2223
23- defaultPublishConfig = " ${Config .Flavors .production} Release"
24-
2524 versionName = " $version "
2625 }
2726
@@ -32,17 +31,6 @@ android {
3231 }
3332 }
3433
35- flavorDimensions(Config .Flavors .dimension)
36-
37- productFlavors {
38- create(Config .Flavors .staging) {
39- minSdkVersion(Config .Android .minSdkVersionDebug)
40- }
41- create(Config .Flavors .production) {
42- minSdkVersion(Config .Android .minSdkVersion)
43- }
44- }
45-
4634 compileOptions {
4735 sourceCompatibility = JavaVersion .VERSION_1_8
4836 targetCompatibility = JavaVersion .VERSION_1_8
Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ android {
99 defaultConfig {
1010 targetSdkVersion(Config .Android .targetSdkVersion)
1111 minSdkVersion(Config .Android .minSdkVersion)
12-
13- missingDimensionStrategy(Config .Flavors .dimension, Config .Flavors .production)
1412 }
1513
1614 compileOptions {
Original file line number Diff line number Diff line change @@ -20,8 +20,6 @@ android {
2020 testInstrumentationRunnerArguments = mapOf (
2121 " clearPackageData" to " true"
2222 )
23-
24- missingDimensionStrategy(Config .Flavors .dimension, Config .Flavors .production)
2523 }
2624
2725 buildTypes {
You can’t perform that action at this time.
0 commit comments