APK signing error : Failed to read key from keystore

前端 未结 8 1445
时光取名叫无心
时光取名叫无心 2020-12-01 03:46

I\'m developing android app under intellij and gradle. and using following way to generate keystore file:

keytool -genkey -v -keystore my-release-key.keystor         


        
相关标签:
8条回答
  • 2020-12-01 04:08

    Check your keystore file for first, in you example you creating file with name my-release-key.keystore. If its correct and really present in folder Users/bournewang/Documents/Project check alias, in your example it is -alias alias_name, but in config you specified alias mike

    0 讨论(0)
  • 2020-12-01 04:10

    In order to find out what's wrong you can use gradle's signingReport command.

    On mac:

    ./gradlew signingReport
    

    On Windows:

    gradlew signingReport
    
    0 讨论(0)
提交回复
热议问题