Published Android apk gives error “Package file was not signed correctly”

后端 未结 8 1971
南笙
南笙 2020-12-01 09:04

I recently uploaded my application to the android market however it\'s refusing to run when downloaded due to the error

Package file was not signed co

8条回答
  •  爱一瞬间的悲伤
    2020-12-01 09:46

    Recently, I signed my apks from the command line and got this error. I solved this error through the instructions in this link:

    http://developer.android.com/tools/publishing/app-signing.html

    $ jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore my_application.apk alias_name
    

提交回复
热议问题