I’m trying to launch “Developer apps” from my Android app with this code:
final Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://search?q=pub:VenturezLab"));
startActivity(intent);
Play Store starts, but says, that no apps found. Why?
You need to specify that what you’re pointing to isn’t a package name.
Use
market://search?q=pub:VenturezLabinstead.