Brinda Rathod
Brinda Rathod

Reputation: 2903

Should i again generate "Signedapk" after made changes to code

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

Answers (3)

Pragnesh Ghoda  シ
Pragnesh Ghoda シ

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.

  • Proguard
  • Enable Minify
  • Shrink Resources
  • String Localization
  • Turn off Logging and Debugging
  • Delete unused files
  • Change Version Name and Version Code

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

Venky G
Venky G

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

Amine ABDALKHALKI
Amine ABDALKHALKI

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

Related Questions