We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a9f99 commit e68880bCopy full SHA for e68880b
app/build.gradle.kts
@@ -22,6 +22,13 @@ android {
22
keyAlias = keystoreProperties["keyAlias"] as String
23
keyPassword = keystoreProperties["keyPassword"] as String
24
}
25
+
26
+ create("play") {
27
+ storeFile = rootProject.file(keystoreProperties["storeFile"]!!)
28
+ storePassword = keystoreProperties["storePassword"] as String
29
+ keyAlias = keystoreProperties["uploadKeyAlias"] as String
30
+ keyPassword = keystoreProperties["uploadKeyPassword"] as String
31
+ }
32
33
34
@@ -51,6 +58,14 @@ android {
51
58
52
59
53
60
61
62
+ initWith(getByName("release"))
63
+ applicationIdSuffix = ".play"
64
+ if (useKeystoreProperties) {
65
+ signingConfig = signingConfigs.getByName("play")
66
67
68
54
69
buildFeatures {
55
70
viewBinding = true
56
71
0 commit comments