demos: Give Android versions permissions for internet & read/write files
authorIan Elliott <ianelliott@google.com>
Thu, 1 Sep 2016 17:09:21 +0000 (11:09 -0600)
committerIan Elliott <ianelliott@google.com>
Tue, 13 Sep 2016 20:53:37 +0000 (14:53 -0600)
This is in support of RenderDoc (and other tracing libraries).  On Android,
these "native" applications must have permission to read/write files on the
Android filesystem so that a trace-capture library can write a trace file.
After building and installing the application, the following commands should be
run from a Linux shell, in order to truly grant those permissions (not normally
required for an Android Java-based app, with a GUI; but is required for these
shell-launched, native apps):

adb shell pm grant com.example.Cube android.permission.READ_EXTERNAL_STORAGE
adb shell pm grant com.example.Cube android.permission.WRITE_EXTERNAL_STORAGE

demos/android/AndroidManifest.xml.cube
demos/android/AndroidManifest.xml.tri

index 23db05b..a35ba6f 100644 (file)
@@ -1,6 +1,11 @@
 <?xml version="1.0"?>\r
 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.Cube" android:versionCode="1" android:versionName="1.0">\r
 \r
+    <!-- Allow this app to read and write files (for use by tracing libraries). -->
+    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>\r
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>\r
+    <uses-permission android:name="android.permission.INTERNET"/>
+\r
     <!-- This is the platform API where NativeActivity was introduced. -->\r
     <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="23"/>\r
 \r
index d23e9a4..00ff122 100644 (file)
@@ -1,6 +1,11 @@
 <?xml version="1.0"?>\r
 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.Tri" android:versionCode="1" android:versionName="1.0">\r
 \r
+    <!-- Allow this app to read and write files (for use by tracing libraries). -->\r
+    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>\r
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>\r
+    <uses-permission android:name="android.permission.INTERNET"/>\r
+\r
     <!-- This is the platform API where NativeActivity was introduced. -->\r
     <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="23"/>\r
 \r