如何生成Android AppUrl? [复制]
Posted
技术标签:
【中文标题】如何生成Android AppUrl? [复制]【英文标题】:How to generate Android AppUrl? [duplicate] 【发布时间】:2019-02-11 10:07:04 【问题描述】:任何人都可以知道如何在 android Studio 中生成 AppUrl 吗?我的应用程序处于开发阶段,所以我没有 PlayStore 应用程序 url。有谁知道那个替代方案??
注意-它不是在 playstore 上上传的,它处于开发阶段,所以我没有 playstore appurl。
在将 appurl 上传到 Play 商店之前,有什么方法可以实现或获取 appurl ???
我想要这样的东西 https://developer.android.com/studio/write/app-link-indexing 。但我不知道如何实现它。
前面的回复很明显
【问题讨论】:
为什么在将应用上传到 Playstore 之前需要应用 url? @Qasim 我需要集成一些支付网关,我需要添加appurl @Qasim 我认为它的正常使用,在应用程序启动之前必须有一些链接,比如给我们打分等https://play.google.com/store/apps/details?id=<package_name>
最简单的方法
@NICK 检查我的答案,它肯定对你有帮助。
【参考方案1】:
您的应用网址将是
https://play.google.com/store/apps/details?id="your app package name"
【讨论】:
感谢您的早日回复,正如我上面已经提到的,我的应用程序处于开发阶段。它尚未在 Play Store 上发布。 这就是为什么我说,“会的”。【参考方案2】: Uri uri = Uri.parse("market://details?id=" + getApplication().getPackageName());
Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
// To count with Play market backstack, After pressing back button,
// to taken back to our application, we need to add following flags to intent.
goToMarket.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY |
Intent.FLAG_ACTIVITY_NEW_DOCUMENT |
Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
try
startActivity(goToMarket);
catch (ActivityNotFoundException e)
startActivity(new Intent(Intent.ACTION_VIEW,
Uri.parse("http://play.google.com/store/apps/details?id=" + getApplication().getPackageName())));
【讨论】:
以上是关于如何生成Android AppUrl? [复制]的主要内容,如果未能解决你的问题,请参考以下文章