• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps [Newbie] Permissions help!

GavChap

Newbie
Adding this code

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
 
why don't you want to add the permission for INTERNET? I don't see what the big deal is?
in order for the market to retrieve data for apps and for the user to be able to upgrade to the paid version, and to PAY you, they certainly need the Internet right?
 
Back
Top Bottom