Adding this code
Seems to mean that I now need to add a permission for INTERNET into my manifest permissions? Is that correct even though I'm only invoking the market via an intent? Is there another way to invoke a market intent without needing internet permission? All I'm attempting is to ad a menu item to allow people to upgrade to the paid version.
Thanks
Code:
Uri uri=Uri.parse("market://details?id=com.gavchap.ultimatelevelpaid");
Intent intent = new Intent(Intent.ACTION_VIEW,uri);
startActivity(intent);
Seems to mean that I now need to add a permission for INTERNET into my manifest permissions? Is that correct even though I'm only invoking the market via an intent? Is there another way to invoke a market intent without needing internet permission? All I'm attempting is to ad a menu item to allow people to upgrade to the paid version.
Thanks