What is the difference between release and debug when making signed APK files?

Asked 2 years ago, Updated 2 years ago, 155 views

At the Android Studio

I made a signed APK and posted it on Google Store...

I made it for release.

There's something I need to fix, so I fixed it...

Then should I make it for debug this time?

Is there any difference when you upload it?

Or do I just make a release again and replace it with the previous APK file?

apk

2022-09-22 16:17

1 Answers

When distributing to the Google Store, upload the APK created with the release build. You can understand that debug builds are used for development or debug purposes. The release build is an APK with code obfuscation and optimization (depending on the settings).

Additionally, please read the Turn off logging and debugging section from the link below.


2022-09-22 16:17

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.