Adding User Permissions to the Android Project Manifest

Add user permissions to the Android project in the Android Manifest File.

  1. If needed, open the Android Manifest.
  2. Select the AndroidManifest.xml tab.
  3. Add permissions to the AndroidManifest.xml file as a child element of the <manifest> element. You can use the AndroidManifest.xml file from the SUP_Android_Custom_Dev_Tutorial_code.zip file to copy and paste the text.
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  4. Select File > Save.