Google最近在Google Play商店中添加了“开发者页面”。有没有办法从Android应用程序链接到这个页面?
我已经链接到我的某个应用程序,并且工作正常。所以我尝试用我的开发者ID替换包名:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=11111111111111111"));
mContext.startActivity(intent);
但那没用。
由于
答案 0 :(得分:0)
遗憾的是,目前还没有。您拥有的最好的两个选项是链接到"发布商的所有应用程序"您发现的页面或使用play.google.com
在外部链接到浏览器版本的页面答案 1 :(得分:-1)
使用市场链接到开发页面似乎不起作用,但是如果用户允许,通过网络浏览器会在市场上开放。
http://play.google.com/store/apps/dev?id = [开发者页面ID]
REF: https://developer.android.com/distribute/tools/promote/linking.html