android - How do you create a stub application that only directs users to download the full version on Google Play? -
just looking create stub application nothing direct user download full version on google play once application launched.
i'm assuming stub apk need same package name, signed same certificate have lower version code. while pointing google play product page. that's needed?
can have apk update upon launch google play without directing user initiate clicking update button?
thanks!
try one:
final string appname = "com.example"; startactivity(new intent(intent.action_view, uri.parse("market://details?id="+appname)));
remember user can have no googleplay installed, in case want catch activitynotfoundexception (or that), , give link browser.
your app stub has have same package name, , must signed same certificate 1 in googleplay.
Comments
Post a Comment