We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1bfa5f commit df2bb60Copy full SHA for df2bb60
app/build.gradle.kts
@@ -20,6 +20,15 @@ android {
20
}
21
22
23
+ signingConfigs {
24
+ release {
25
+ storeFile file(RELEASE_STORE_FILE)
26
+ storePassword RELEASE_STORE_PASSWORD
27
+ keyAlias RELEASE_KEY_ALIAS
28
+ keyPassword RELEASE_KEY_PASSWORD
29
+ }
30
31
+
32
buildTypes {
33
release {
34
isMinifyEnabled = false
@@ -48,15 +57,6 @@ android {
48
57
excludes += "/META-INF/{AL2.0,LGPL2.1}"
49
58
50
59
51
-
52
- signingConfigs {
53
- release {
54
- storeFile file(RELEASE_STORE_FILE)
55
- storePassword RELEASE_STORE_PASSWORD
56
- keyAlias RELEASE_KEY_ALIAS
- keyPassword RELEASE_KEY_PASSWORD
- }
60
61
62
dependencies {
0 commit comments