My application is a trial version apk. Once the period is completed, can I initiate another application to be installed/downloaded from the android market ( purchasing process) which is a paid application using the current running trail application.
+6
A:
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")));
RoToRa
2010-04-20 14:40:25
Can the second application be hidden and not exposed to users in android market....
frndforall
2010-04-21 06:16:11
No, that is not possible.
RoToRa
2010-04-21 07:03:42
thank you for the response..
frndforall
2010-04-21 10:30:51