File tree Expand file tree Collapse file tree 1 file changed +2
-14
lines changed Expand file tree Collapse file tree 1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change 9
9
// exactly 1 digit
10
10
versionMinor = 0
11
11
// exactly 2 digits
12
- versionBuild = 5
12
+ versionBuild = 6
13
13
}
14
14
15
15
android {
@@ -19,7 +19,7 @@ android {
19
19
defaultConfig {
20
20
applicationId " com.afwsamples.testdpc"
21
21
minSdkVersion 21
22
- targetSdkVersion 23
22
+ targetSdkVersion 24
23
23
versionCode versionMajor * 1000 + versionMinor * 100 + versionBuild
24
24
versionName " ${ versionMajor} .${ versionMinor} .${ versionBuild} "
25
25
}
@@ -56,18 +56,6 @@ android {
56
56
}
57
57
}
58
58
59
- productFlavors {
60
- standard {
61
- minSdkVersion 21
62
- targetSdkVersion 23
63
- }
64
-
65
- N {
66
- minSdkVersion 21
67
- targetSdkVersion 24
68
- }
69
- }
70
-
71
59
// Enable lint checking in all build variants.
72
60
applicationVariants. all { variant ->
73
61
variant. outputs. each { output ->
You can’t perform that action at this time.
0 commit comments