Here is How to Get your App’s GooglePlay Store Link before Publishing
So you have built an app and is ready to upload it to play store, but you want include your app’s playstore link for sharing purposes, or you just want a “Share this App” function in your app. Some people update the app after getting link from playstore, this is not necessary because you can get your link before publishing app, here is how to do it.
https://play.google.com/store/apps/details?id=your.app.packageIDhere"
You just need add your app’s package ID after the “=”
Or you can get your app ID programmatically
Here is how to get your app package ID programmatically
ttps://play.google.com/store/apps/details?id=" + BuildConfig.APPLICATION_ID
That’s it, no need wait until app is published.
Hello