我计划将我创建的Android应用上传到Google Play Store
,我想知道商店中应用的链接,以便我可以将其插入应用中的某个位置(其中你可以分享应用程序)。
以何种格式指向Play商店中实际应用的链接?是否采用以下格式? :
`https://play.google.com/store/apps/details/id=package_name?
我无法在网上找到答案。我认为它与包名有关,但我不确定..
答案 0 :(得分:2)
我习惯使用更新屏幕添加添加侦听器点击并使用意图在谷歌播放中找到它,如下所示:
Intent i = new Intent(android.content.Intent.ACTION_VIEW);
i.setData(Uri.parse("https://play.google.com/store/apps/details?id=" + getActivity().getPackageName()));
startActivity(i);
请试一试!
答案 1 :(得分:1)
https://play.google.com/store/apps/details?id=com.org.appname
其中" com.org.appname"是你的包裹名称。