Android intent to google play app at “my applicati

2019-04-17 16:10发布

问题:

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:

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