Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I simulate an app update

Tags:

android

sqlite

I am using SQLite to store some data. Recently I had a complaint by an user telling me that everytime I update the app, the database is wiped.

I want to fix this, but first I need to simulate an application update without uploading it to google play and waiting.

like image 833
code511788465541441 Avatar asked Mar 27 '14 15:03

code511788465541441


People also ask

How do I simulate an iOS app update?

Q2: You can simulate an app update by publishing multiple versions in TestFlight and changing between them. Another method is to install the app on the device, and then open Settings => General => iPhone Storage. Select your app and press "Offload App".

Can you force an update on an app?

Tap Manage apps & device.Tap Manage, then find the app you want to update automatically. To open the app's "Details" page, tap the app. Turn on Enable auto update.

Can you force update Android app?

Go to Settings of your device and then tap on About Phone. Next, click on Software Update or System Update, depending on the brand. Finally, click on the Check for Update button.


1 Answers

You dont need to upload the apk to google, You can install it directly in your device with adb.

adb install -r yourApp.apk 
like image 192
sgc_code Avatar answered Nov 01 '22 13:11

sgc_code