简体   繁体   中英

Execution failed for task ':app:packageDebug'

I'm getting this error when running (Shift+F10) a project in Android Studio.

Error:Execution failed for task ':app:packageDebug'.

Failed to read key key_name from store "/home/hello/AndroidStudioProjects/project/extras/keystorefile.jks": Keystore was tampered with, or password was incorrect

But it generates release .apk file without a problem.

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    }
}

signingConfigs {
    releaseConfig {
        storeFile file("keystore.jks")
        storePassword "**"
        keyAlias "key name is here"
        keyPassword "**"
    }

Note :use this lines in app.gradle. make sure the line should be start from "releaseConfig" should not "debug" on " signingConfigs".and its working.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM