让签名密钥库的位置动态加载

This commit is contained in:
TheWhiteDog9487
2026-01-28 17:27:37 +08:00
parent b923adbabb
commit 66faf5fe8c
+2 -2
View File
@@ -41,8 +41,8 @@ android {
buildConfig = true } buildConfig = true }
signingConfigs { signingConfigs {
val KeystorePath = "~/Downloads/Android签名密钥.jks" val KeystorePath = System.getProperty("Android_Keystore_Path")
if( file(KeystorePath).exists() == false ) { if( KeystorePath == null || file(KeystorePath).exists() == false ) {
return@signingConfigs } return@signingConfigs }
create("release"){ create("release"){