ywj7931
ywj7931

Reputation: 155

How to get what App's link going to be in PlayStore before uploading?

I want to add share link in my app including the downloading link of android play. But since my app is not launched on PlayStore, I don't have download link currently. How can I include download link now?

Upvotes: 4

Views: 4426

Answers (2)

Allexandre Vieira
Allexandre Vieira

Reputation: 61

According to google support, the url for your app is/will be

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

For example, if your package name is com.mypackagename.myapplication, when you publish this app your url will be:

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


Here is a practical example: google chrome app url, see the url in your browser

Upvotes: 6

Mann
Mann

Reputation: 560

This should help you.

final String appPackageName = getPackageName(); // this is your playstore url id parameter
    try {
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
    } catch (android.content.ActivityNotFoundException anfe) {
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + appPackageName)));
    }

Upvotes: 4

Related Questions