Reputation: 6501
I know a way for this question for only one app
String desiredAppId = "com.rovio.angrybirds";
Intent i = new Intent(Intent.ACTION_VIEW,Uri.parse("market://details?id="+desiredAppId));
startActivity(i);
But if i want to list all (free && selected developer && release date>2011 && etc) how can implement it?
Upvotes: 0
Views: 63
Reputation: 1006539
But if i want to list all (free && selected developer && date>2011 && etc) how can implement it?
You cannot create arbitrary queries. The documentation outlines the limited options: a single app, all apps for a developer, or the results of a keyword search. There is no "date" and there is no "&&".
Upvotes: 2