What will my Apps URL be in google play when i publish it?

android, google-play

Solution

Currently, it will be

https://play.google.com/store/apps/details?id=com.yourpackagename

Where `com.yourpackagename` is your package as defined in your `AndroidMainfest.xml`

Problem

In my app i will be including a feature where the user uploads information to facebook and asks for help. As part of that upload i want include a link to the google play store so if others see it on their phones etc they may like to download. As part of that i will need to know the google play link before I publish it on Google Play. Is there a predetermined formula for getting the link. I.e play.google.com/store/com.mypackagename.html ? or will i have to direct it to a webpage of mine that after its been published i use a redirect the user to the google play page?

Original source