Getting a link to my application on play.google before submitting my application

I want to share a link to my application (link to play.google) using facebook api. But I must have this before placing the application on the market in order to put it in my code. Are there any other solutions besides updating my application right after publication?

+7
source share
1 answer

use this

https://play.google.com/store/apps/details?id=<your package name> 

and you can get the package name this way.

  String packageName = getApplicationContext().getPackageName(); 

currently it will not show any application, but after its publication it is automatically redirected to the page of your application.

+11
source

All Articles