LoginSignup
0
0

More than 1 year has passed since last update.

How to Update Android Apps

Last updated at Posted at 2021-05-12

I'll explain how to update Android Apps. I am using Android Studio.

[Steps]
1. Open "build.gradle" file on the Android Studio.
2. Update Version. We must set the versionCode as an Integer.
    (ex.) You must write the versionCode and version name in the file like this.
    versionCode 4 to 5
    versionName "1.0.4" to "1.0.5"
3. Click "Sync Now" on the upper right.
4. After the sync, Click Build on the menu. And then, choose Generate Signed APK...
5. Choose "Android App Bundle" on another pop-up window and click next.
6. Set your Key store path and fill in the Key store password, Key alias, and Key password. After that, click next.
7. Choose your Build Variants, debug or release and click finish.
8. After executing tasks, the android studio generates the signed bundle apps.
9. Login Google Play Developer Console.
10. Pick the app up and click the production of the Release
11. Open the Releases Tab, and then you click "Create new release."
12. Upload the app bundle (.aab) file.
13. Fill in the release notes.
14. Click the save on the bottom.
15. After saving, click the review release.
16. Click "Start rollout to production" after checking the detail.

Android アプリ更新の際の自分用のメモです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0