colsanders83
Lurker
Hi All,
I'm in the middle of learning about permissions for Android. I built a basic app that launches a web page using the following code;
I have no permissions at all in the manifest, yet, the web page launches without any issues. Should this fail when I launch? (Or at least asked permission when I install?)
Is "debuggable" bypassing this requirement?
Thanks in advance for any help.
I'm in the middle of learning about permissions for Android. I built a basic app that launches a web page using the following code;
Code:
Uri uri = Uri.parse("http://www.google.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
I have no permissions at all in the manifest, yet, the web page launches without any issues. Should this fail when I launch? (Or at least asked permission when I install?)
Is "debuggable" bypassing this requirement?
Thanks in advance for any help.