Skip to content
This repository was archived by the owner on Mar 22, 2026. It is now read-only.

Commit b4f60c6

Browse files
authored
Merge pull request #54 from qianmo2233/dev
update
2 parents 0a9bd27 + bb669ab commit b4f60c6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

android/app/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ android {
3737

3838
signingConfigs {
3939
create("release") {
40-
storeFile = project.findProperty("storeFile")?.let { file(it) }
41-
storePassword = project.findProperty("storePassword")?.toString()
42-
keyAlias = project.findProperty("keyAlias")?.toString()
43-
keyPassword = project.findProperty("keyPassword")?.toString()
40+
storeFile = file(keyProperties["storeFile"] as String)
41+
storePassword = keyProperties["storePassword"] as String
42+
keyAlias = keyProperties["keyAlias"] as String
43+
keyPassword = keyProperties["keyPassword"] as String
4444
}
4545
}
4646

0 commit comments

Comments
 (0)