Skip to content

Commit df2bb60

Browse files
committed
build: reorder config
1 parent d1bfa5f commit df2bb60

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

app/build.gradle.kts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@ android {
2020
}
2121
}
2222

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+
2332
buildTypes {
2433
release {
2534
isMinifyEnabled = false
@@ -48,15 +57,6 @@ android {
4857
excludes += "/META-INF/{AL2.0,LGPL2.1}"
4958
}
5059
}
51-
52-
signingConfigs {
53-
release {
54-
storeFile file(RELEASE_STORE_FILE)
55-
storePassword RELEASE_STORE_PASSWORD
56-
keyAlias RELEASE_KEY_ALIAS
57-
keyPassword RELEASE_KEY_PASSWORD
58-
}
59-
}
6060
}
6161

6262
dependencies {

0 commit comments

Comments
 (0)