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

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 }
signingConfigs {
val KeystorePath = "~/Downloads/Android签名密钥.jks"
if( file(KeystorePath).exists() == false ) {
val KeystorePath = System.getProperty("Android_Keystore_Path")
if( KeystorePath == null || file(KeystorePath).exists() == false ) {
return@signingConfigs }
create("release"){