Android simulate update application Google Play Store


To simulate update android application from Google Play Store, we can use adb and Android Studio.
Here is the step by step:

A. Generate APK

1. Go to Android Studio -> Build -> Builds (APK)
2. Switch mode to Project
3. Copy app/build/outputs/apk/debug/app-debug.apk to any folder

B. Deploy with adb

1. Go to the folder contain apk
2. Execute

1
adb install -r app-debug.apk

3. To debug logcat, use

1
adb logcat -s <TAG_NAME>:*

Done!


One response to “Android simulate update application Google Play Store”

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.