Application running triggers another application installation
My application is a trial version apk. Once the period is completed, can I initiate another 开发者_如何学Capplication to be installed/downloaded from the android market ( purchasing process) which is a paid application using the current running trail application.
The best you can do is point the user to your appication in the market by searching for it:
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=pname:com.example.yourpackage")));
精彩评论