I am trying to launch the app that will be installed on android tablet(Samsung Galaxy Tab 4 10.0) which is NOT ROOTED. Once it is installed, it should be auto-updated as soon as I update the .apk either on my own server or on google play. I read many postings about this and tried the following ways.
- I tried the way below. I downloaded the .apk from my server. Then, tried to install it without any prompt installProcess = Runtime.getRuntime().exec("su -c pm install -r " + filePath);
Android silent apk update This way does not work. I think it is because my device is not ROOTED. My company does not allow me to ROOT the device.
I uploaded my .apk in google play and installed the app through google play on tablet. Then, I changed the code and updated .apk and uploaded it to google play. Even if google play republished my updated app, it does not automatically update my .apk...
I also tried to put the user-permission INSTALL PACKAGE as someone wrote. I can't even place this since the app I am working on is not System App.
Would you please advise me of how to handle this issue? I have seen Tinder app update by itself without me pressing anything. There was no update notification I have ever seen.
Thanks,
Thank you all for my questions.
Then, isn't there any ways that I can make this app System App without ROOTing my device?