File tree 16 files changed +116
-0
lines changed
16 files changed +116
-0
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,28 @@ android {
40
40
41
41
manifestPlaceholders = [ googleMapsKey : properties. getProperty(" google.maps.key" , " " ) ]
42
42
}
43
+
44
+ signingConfigs {
45
+ // We use a bundled debug keystore, to allow debug builds from CI to be upgradable
46
+ debug {
47
+ storeFile rootProject. file(' debug.keystore' )
48
+ storePassword ' android'
49
+ keyAlias ' androiddebugkey'
50
+ keyPassword ' android'
51
+ }
52
+ }
53
+
43
54
buildTypes {
55
+ debug {
56
+ signingConfig signingConfigs. debug
57
+ }
58
+
44
59
release {
45
60
minifyEnabled false
46
61
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
47
62
}
48
63
}
64
+
49
65
compileOptions {
50
66
sourceCompatibility JavaVersion . VERSION_1_8
51
67
targetCompatibility JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change @@ -29,7 +29,21 @@ android {
29
29
testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
30
30
}
31
31
32
+ signingConfigs {
33
+ // We use a bundled debug keystore, to allow debug builds from CI to be upgradable
34
+ debug {
35
+ storeFile rootProject. file(' debug.keystore' )
36
+ storePassword ' android'
37
+ keyAlias ' androiddebugkey'
38
+ keyPassword ' android'
39
+ }
40
+ }
41
+
32
42
buildTypes {
43
+ debug {
44
+ signingConfig signingConfigs. debug
45
+ }
46
+
33
47
release {
34
48
minifyEnabled false
35
49
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
Original file line number Diff line number Diff line change @@ -54,7 +54,21 @@ android {
54
54
exclude " /*.jar"
55
55
}
56
56
57
+ signingConfigs {
58
+ // We use a bundled debug keystore, to allow debug builds from CI to be upgradable
59
+ debug {
60
+ storeFile rootProject. file(' debug.keystore' )
61
+ storePassword ' android'
62
+ keyAlias ' androiddebugkey'
63
+ keyPassword ' android'
64
+ }
65
+ }
66
+
57
67
buildTypes {
68
+ debug {
69
+ signingConfig signingConfigs. debug
70
+ }
71
+
58
72
release {
59
73
minifyEnabled false
60
74
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
Original file line number Diff line number Diff line change @@ -35,7 +35,21 @@ android {
35
35
vectorDrawables. useSupportLibrary = true
36
36
}
37
37
38
+ signingConfigs {
39
+ // We use a bundled debug keystore, to allow debug builds from CI to be upgradable
40
+ debug {
41
+ storeFile rootProject. file(' debug.keystore' )
42
+ storePassword ' android'
43
+ keyAlias ' androiddebugkey'
44
+ keyPassword ' android'
45
+ }
46
+ }
47
+
38
48
buildTypes {
49
+ debug {
50
+ signingConfig signingConfigs. debug
51
+ }
52
+
39
53
release {
40
54
minifyEnabled false
41
55
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
Original file line number Diff line number Diff line change @@ -34,7 +34,21 @@ android {
34
34
testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
35
35
}
36
36
37
+ signingConfigs {
38
+ // We use a bundled debug keystore, to allow debug builds from CI to be upgradable
39
+ debug {
40
+ storeFile rootProject. file(' debug.keystore' )
41
+ storePassword ' android'
42
+ keyAlias ' androiddebugkey'
43
+ keyPassword ' android'
44
+ }
45
+ }
46
+
37
47
buildTypes {
48
+ debug {
49
+ signingConfig signingConfigs. debug
50
+ }
51
+
38
52
release {
39
53
minifyEnabled false
40
54
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
Original file line number Diff line number Diff line change @@ -33,16 +33,32 @@ android {
33
33
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
34
34
}
35
35
36
+ signingConfigs {
37
+ // We use a bundled debug keystore, to allow debug builds from CI to be upgradable
38
+ debug {
39
+ storeFile rootProject. file(' debug.keystore' )
40
+ storePassword ' android'
41
+ keyAlias ' androiddebugkey'
42
+ keyPassword ' android'
43
+ }
44
+ }
45
+
36
46
buildTypes {
47
+ debug {
48
+ signingConfig signingConfigs. debug
49
+ }
50
+
37
51
release {
38
52
minifyEnabled false
39
53
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
40
54
}
41
55
}
56
+
42
57
compileOptions {
43
58
sourceCompatibility JavaVersion . VERSION_1_8
44
59
targetCompatibility JavaVersion . VERSION_1_8
45
60
}
61
+
46
62
kotlinOptions {
47
63
jvmTarget = ' 1.8'
48
64
}
Original file line number Diff line number Diff line change @@ -34,7 +34,21 @@ android {
34
34
testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
35
35
}
36
36
37
+ signingConfigs {
38
+ // We use a bundled debug keystore, to allow debug builds from CI to be upgradable
39
+ debug {
40
+ storeFile rootProject. file(' debug.keystore' )
41
+ storePassword ' android'
42
+ keyAlias ' androiddebugkey'
43
+ keyPassword ' android'
44
+ }
45
+ }
46
+
37
47
buildTypes {
48
+ debug {
49
+ signingConfig signingConfigs. debug
50
+ }
51
+
38
52
release {
39
53
minifyEnabled false
40
54
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
Original file line number Diff line number Diff line change @@ -35,7 +35,21 @@ android {
35
35
vectorDrawables. useSupportLibrary = true
36
36
}
37
37
38
+ signingConfigs {
39
+ // We use a bundled debug keystore, to allow debug builds from CI to be upgradable
40
+ debug {
41
+ storeFile rootProject. file(' debug.keystore' )
42
+ storePassword ' android'
43
+ keyAlias ' androiddebugkey'
44
+ keyPassword ' android'
45
+ }
46
+ }
47
+
38
48
buildTypes {
49
+ debug {
50
+ signingConfig signingConfigs. debug
51
+ }
52
+
39
53
release {
40
54
minifyEnabled false
41
55
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
You can’t perform that action at this time.
0 commit comments