@@ -5,11 +5,11 @@ apply from: '../dist.gradle'
5
5
ext {
6
6
/* Version code for *next* release, bump *after* a release is created. */
7
7
// 1 or more digits
8
- versionMajor = 4
8
+ versionMajor = 5
9
9
// exactly 1 digit
10
10
versionMinor = 0
11
11
// exactly 2 digits
12
- versionBuild = 06
12
+ versionBuild = 00
13
13
}
14
14
15
15
android {
@@ -32,11 +32,21 @@ android {
32
32
}
33
33
}
34
34
35
+ flavorDimensions " targetSdk" , " packageName"
35
36
productFlavors {
36
- main {
37
-
37
+ targetP {
38
+ dimension ' targetSdk'
39
+ targetSdkVersion 28
40
+ }
41
+ targetO {
42
+ dimension ' targetSdk'
43
+ targetSdkVersion 27
44
+ }
45
+ normal {
46
+ dimension ' packageName'
38
47
}
39
48
replica {
49
+ dimension ' packageName'
40
50
applicationIdSuffix " .replica"
41
51
}
42
52
}
@@ -76,14 +86,14 @@ android {
76
86
}
77
87
78
88
dependencies {
79
- compile ' com.android.support:multidex:1.0.1'
80
- compile ' com.android.support:preference-v14:27.0.2'
81
- compile ' com.android.support:recyclerview-v7:27.0.2'
82
- compile ' com.android.support:support-v13:27.0.2'
83
- compile ' com.android.support.constraint:constraint-layout:1.0.2'
84
- compile ' com.google.android.gms:play-services-safetynet:+'
85
- compile (name : ' setup-wizard-lib-platform-release' , ext : ' aar' )
86
- compile ' org.bouncycastle:bcpkix-jdk15on:1.56'
87
- compile ' org.bouncycastle:bcprov-jdk15on:1.56'
88
- compile ' com.google.guava:guava:23.6-android'
89
+ implementation ' com.android.support:multidex:1.0.1'
90
+ implementation ' com.android.support:preference-v14:27.0.2'
91
+ implementation ' com.android.support:recyclerview-v7:27.0.2'
92
+ implementation ' com.android.support:support-v13:27.0.2'
93
+ implementation ' com.android.support.constraint:constraint-layout:1.0.2'
94
+ implementation ' com.google.android.gms:play-services-safetynet:+'
95
+ implementation (name : ' setup-wizard-lib-platform-release' , ext : ' aar' )
96
+ implementation ' org.bouncycastle:bcpkix-jdk15on:1.56'
97
+ implementation ' org.bouncycastle:bcprov-jdk15on:1.56'
98
+ implementation ' com.google.guava:guava:23.6-android'
89
99
}
0 commit comments