在 Android 中的 facebook 和 twitter 中共享应用程序

发布于 2024-12-21 15:39:15 字数 118 浏览 0 评论 0原文

在我的应用程序中,有 1 个功能用于共享来自 markrt 的我的应用程序链接。

之前,如何获取我的应用程序在 Android 市场上的链接......

但问题是,在将我的应用程序提交到市场

In my application there is 1 functionality for sharing the my application link from markrt.

But problem is that how could i get the link of my application on android market before

submiting the my application to the market...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自我难过 2024-12-28 15:39:15

它非常简单,只需查看下面的链接:

https://market.android.com/details?id=YourPackageName

其中 YourPackageName 是您的应用程序包的名称。

仅供参考,一般android应用程序在市场上上传时都会带有包名,在任何情况下都必须是唯一的。

例如:

https://market.android.com/details?id=com.facebook.katana ,这里是 com.facebook.katana是在中声明的主包带有 package 的 AndroidManifest.xml 文件:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.facebook.katana"
    android:versionCode="1"
    android:versionName="1.0" >

Its very much easy, just look at below link:

https://market.android.com/details?id=YourPackageName

Where YourPackageName is the name of package of your application.

FYI, Generally android application is uploaded on market with the package name, which must be unique in any case.

For example:

https://market.android.com/details?id=com.facebook.katana , here com.facebook.katana is the main package declared in the AndroidManifest.xml file with package:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.facebook.katana"
    android:versionCode="1"
    android:versionName="1.0" >
末蓝 2024-12-28 15:39:15

通常,Android 市场会遵循应用程序链接,就像您在 Android Manifest.xml 中提到的那样,

例如。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.company.testing.app"
    android:versionCode="1"
    android:versionName="1.0" 
   >

会是这样的。但请确保您选择的软件包在 Android 市场上可用。

https://market.android.com/详细信息?id=com.company.testing.app&hl=en

Usually the android market follows the app link as with what you've mentioned in your android manifest.xml

For Eg.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.company.testing.app"
    android:versionCode="1"
    android:versionName="1.0" 
   >

will be like this. But ensure the package you ve chosen is available in android market.

https://market.android.com/details?id=com.company.testing.app&hl=en

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文