5

If i start up the 'Play Games' icon on the android and goto My Games, i can click on my app to get to the page about it. Is it possible to programatically go here when a user clicks a button in my app?

NOTE: I dont want to open the app on the Google Play Store!, this is the app page in the Game Play Services I want!

2
  • No, i dont want to open the google play STORE, i want to open the google GAME PLAY SERVICE page, please read the question before down grading it Commented Mar 4, 2014 at 11:21
  • 1
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=com.google.android.gms")));
    – Frank
    Commented Apr 11, 2018 at 9:05

1 Answer 1

-1

If you want to link to your products from an Android app, create an Intent that opens an Google Play URL, as shown in the example below.

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.example.android"));
startActivity(intent);

for More information go through link

1
  • This is the play store, NOT the game play services Commented Mar 4, 2014 at 11:22

Not the answer you're looking for? Browse other questions tagged or ask your own question.