Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you simulate and test the Application Update on Android and iphone

You have 1.1 version app already developed and is released in market & you are about to send update(release new version 1.2 ) in Play store/itunes with some critical functional changes.

What are the ways do you follow to simulate situation like real time App Update that happen in Play store/itunes? How do you test that?

Common things which i cross checked before :

Android

Ios

Sample Scenario :

I'm trying to trace down a database upgrade bug and need to figure out a way of simulating market upgrades.

like image 598
BlueBerry - Vignesh4303 Avatar asked Sep 26 '13 11:09

BlueBerry - Vignesh4303


1 Answers

You can actually release into Play store as alpha and/or beta and test upgrade this way. It's best as it's a real upgrade from the store, nothing simulated.

You can read more here: https://support.google.com/googleplay/android-developer/answer/3131213?hl=en

EDIT

You can also try something like that: have a copy of the code of the previous version. Upload it to a test device. Then upload the new code, this will force a database update which you will be able to debug.

like image 88
Szymon Avatar answered Oct 08 '22 20:10

Szymon