Mike
Mike

Reputation: 55

Android link to another application

Could I in the application do link to another application in Google Play?

Is it allowed to this by the rules Google Play?

Could you help me please? Thank you!

Upvotes: 0

Views: 65

Answers (1)

Oscar LT
Oscar LT

Reputation: 797

Try this:

Intent goToMarket = new Intent(Intent.ACTION_VIEW)
.setData(Uri.parse("market://details?id=com.package.name"));

startActivity(goToMarket);

I hope this help you.

Upvotes: 1

Related Questions