Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update an installed android apk using another apk without google play

I have a deployed an android app which has not been uploaded to Google Play according to the requirement of the client. I want to update the apk without uploading to Google Play and keeping the existing data of the current app. Is there a possibility to update the installed apk using a new apk by the device?
Thank you

like image 395
vidulaJ Avatar asked Apr 03 '14 04:04

vidulaJ


1 Answers

You need to download the updated .apk from your server through your app, then you can install the apk through action Intent.

For more detail on how to install the apk from app refer the following link.

https://stackoverflow.com/a/4969421/1405008

like image 96
CoolMonster Avatar answered Nov 15 '22 01:11

CoolMonster