在 Android 中的 facebook 和 twitter 中共享应用程序
在我的应用程序中,有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它非常简单,只需查看下面的链接:
其中 YourPackageName 是您的应用程序包的名称。
仅供参考,一般android应用程序在市场上上传时都会带有包名,在任何情况下都必须是唯一的。
例如:
https://market.android.com/details?id=com.facebook.katana ,这里是 com.facebook.katana是在中声明的主包带有
package
的 AndroidManifest.xml 文件:Its very much easy, just look at below link:
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
:通常,Android 市场会遵循应用程序链接,就像您在 Android Manifest.xml 中提到的那样,
例如。
会是这样的。但请确保您选择的软件包在 Android 市场上可用。
Usually the android market follows the app link as with what you've mentioned in your android manifest.xml
For Eg.
will be like this. But ensure the package you ve chosen is available in android market.