I have code straight from Google’s dev guide:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.example.android"));
startActivity(intent);
It works perfectly on a physical device, the app crashes on Android emulators. Are Android emulators capable of doing it?
The Play Store (formerly known as the Android Market) does not exist on emulators.