1. 程式人生 > >gradle打包:Keystore file xxx not found for signing config

gradle打包:Keystore file xxx not found for signing config

問題:Keystore file C:\Users\xxxx\.android\androidstudio.jks not found for signing

解決方案:

//添加簽名檔案配置

signingConfigs {
    release {
        storeFile file('androidstudio.jks')
        storePassword '123456'
keyAlias 'androidstudio'
keyPassword '123456'
}
}
檢查key store path的正確路徑