Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting link to my app on play.google before posting my app

I want to share link to my app(link on play.google) using facebook api. But I have to have it before posting app on market to put it in my code. Are there any other solutions except updating my app right after posting?

like image 880
haawa Avatar asked Aug 08 '12 10:08

haawa


People also ask

How long does it take to publish an app on Google Play?

Once the app is uploaded on the Google Play developer account and published, it generally takes upto 3-6 business days for your app to Go Live. The Apps are reviewed by the Google Play Store team.

How long does it take to publish an app on Google Play 2022?

Your app is released for review to Google Play Store. Now all you have to do is wait for Google Play's approval. It will take up to 7 days to get it approved. Once approved, it will be available publicly for download on Google Play Store.


1 Answers

use this

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

and you can get package name by this way.

   String packageName = getApplicationContext().getPackageName();

currently it will not show any app but after publishing it automatically redirect in your app page.

like image 116
Sanket Kachhela Avatar answered Oct 06 '22 00:10

Sanket Kachhela