Reputation: 2903
For upload my application on google playstore. I have generated signedapk so my question is after made few changes in code of the app Shall i generate signed apk again ?
Upvotes: 0
Views: 146
Reputation: 8337
Definitely. before uploading application to the Play Store, you should always generate signed APK.
It would be better if you do it with ProGuard, it will provide security to your application.
There are several other things to taken care of while generating signed apk.
Test your application throughout after doing all these things, there are chances that some things might not work after enabling Proguard
and shrink resources
. So its better to solve them and build apk again.
For more information, you can visit this link. https://developer.android.com/studio/publish/app-signing.html
Upvotes: 1
Reputation: 180
Yes.
You done some changes in your code. if you want your changes generate apk. There is no other way to do.
Upvotes: 1
Reputation: 445
Yes it's mandatory to resign the APK whenever you want to regenerate the app, otherwise the application will not be updated if you are using Google Play
https://developer.android.com/studio/publish/app-signing.html
Upvotes: 1