简体   繁体   中英

Linking installed apps to android market

How to link manually installed apps to android market?
Titanium Backup Pro and MyBackup Pro provide this feature.

@Koustubh Yadav I being in that situation before the best advice I can provide and which works best for me is adding an additional "manual update" button linking the device to your host where the new .apk will be uploaded too and fire off a download to download and install your new apk. By default Android will ask if the User wishes to replace the current version ... at which point the User will make the independent choice to update the .apk or refuse.

you would use an intent.

String marketURL = "blah";
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(marketURL));
startActivity(intent);

If this is not what you want, please explain what you want....in more detail...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM