Android intent to google play app at “my applicati

2019-04-17 15:34发布

Is possible to launch a intent to Google play store app to show "my applications" section?? I need to watch current apps and updates.

1条回答
来,给爷笑一个
2楼-- · 2019-04-17 16:11

After some painful retro-engineering...

Intent intent = new Intent("com.google.android.finsky.VIEW_MY_DOWNLOADS");
intent.setClassName("com.android.vending", "com.google.android.finsky.activities.MainActivity");
startActivity(intent);

Edit:
That works for now (Version : 5.2.13) but Google may change this behavior in a future release

查看更多
登录 后发表回答