简体   繁体   English

在 Google Play 说明中从一个应用程序链接到另一个应用程序

[英]Link from one app to another in Google Play description

I have two apps in the google play store.我在 google play 商店有两个应用程序。 Is it possible to create an http link from one to another in the description of the first?是否可以在第一个的描述中创建一个从一个到另一个的 http 链接?

Google Play descriptions do not support links. Google Play 说明不支持链接。

That not true.那不是真的。 You can add links to other application in google play with <a> tag.您可以使用<a>标签在 google play 中添加指向其他应用程序的链接。
For example, link to my app:例如,链接到我的应用程序:

<a href="https://play.google.com/store/apps/details?id=org.ros.android.android_all_sensors_driver">ROS Sensors</a>

You can look at my description app how i do it:你可以看看我的描述应用程序我是怎么做的:
ROS Sensors 活性氧传感器

We can provide links in play store description using two methods.我们可以使用两种方法在 Play 商店描述中提供链接。

<a href="https://www.google.com">Visit Link</a> https://www.google.com

Output in play store app: Play 商店应用中的输出:
Visit Link访问链接https://www.google.com https://www.google.com
Output in play store website: Play商店网站中的输出:
Visit Link https://www.google.com访问链接https://www.google.com

Note :笔记 :
The below code will not make any link in play store app以下代码不会在 Play 商店应用程序中创建任何链接

Visit Link <a href="https://www.google.com">https://www.google.com</a>

Google Play descriptions do not support links. Google Play 说明不支持链接。 You can tell the reader the name of the app, nothing more.您可以告诉读者应用程序的名称,仅此而已。

Plus, in any case, your app will come under the "Related Apps" and "More from developer" headings in most cases.另外,在任何情况下,您的应用程序在大多数情况下都将位于“相关应用程序”和“来自开发人员的更多信息”标题下。

If you put full url address in app description (with https protocol, not only www) it will be visible as a link in browser.如果您在应用程序描述中输入完整的 url 地址(使用 https 协议,不仅是 www),它将在浏览器中显示为链接。

eg: https://play.google.com/store/apps/details?id=domain.company.appname例如: https : //play.google.com/store/apps/details?id=domain.company.appname

Of course google play links to apps aren't nice so you can use some url converters.当然,google play 应用程序链接并不好,因此您可以使用一些 url 转换器。

Google has documentated how to properly link within google play to other resources like a store listing, developer page, a search result etc. . 谷歌已经记录了如何在 google play 中正确链接到其他资源,如商品详情、开发者页面、搜索结果等

Linking to a store listing链接到商品详情

Use the format below to deep-link directly to an app's Store listing page, where users can see the app description, screenshots, reviews and more, and then install it.使用下面的格式直接深层链接到应用的商店列表页面,用户可以在其中查看应用描述、屏幕截图、评论等,然后安装它。

To create the link, you need to know the app's fully qualified package name, which is declared in the app's manifest file.要创建链接,您需要知道应用的完全限定包名称,该名称在应用的清单文件中声明。 The package name is also visible in the Google Play Console.包名称也在 Google Play 控制台中可见。

http://play.google.com/store/apps/details?id=<package_name>

Here's an example:下面是一个例子:

http://play.google.com/store/apps/details?id=com.google.android.apps.maps

A URL of the following form will be converted to a clickable link and will redirect to the address specified in YOUR_URL.以下表单的 URL 将转换为可点击的链接,并将重定向到 YOUR_URL 中指定的地址。

https://www.google.com/url?q=YOUR_URL https://www.google.com/url?q=YOUR_URL

eg: https://www.google.com/url?q=https://play.google.com/store/apps/details?id=domain.company.appname例如: https : //www.google.com/url?q=https : //play.google.com/store/apps/details?id=domain.company.appname

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM