mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
c15078b900
Updated permissions for the renderdoccmd app based on which version of android the app is running on **WRITE_EXTERNAL_STORAGE for <R **MANAGE_EXTERNAL_STORAGE for >=R Updated the Java portion of renderdoccmd to check/request the correct permission based on android version Changed the file path for renderdoc files on Android based on the version of Android the connected device is running **/sdcard/Android/data/$PACKAGE_NAME for <R **/sdcard/Android/media/$PACKAGE_NAME for >=R
22 lines
1.0 KiB
XML
22 lines
1.0 KiB
XML
<?xml version="1.0"?>
|
|
<!-- BEGIN_INCLUDE(manifest) -->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="@RENDERDOC_ANDROID_PACKAGE_NAME@">
|
|
|
|
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="26"/>
|
|
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<!-- Use GL ES 3.2 version -->
|
|
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
|
|
|
|
<application android:debuggable="true" android:label="RenderDocCmd" android:icon="@drawable/icon" android:hasCode="true">
|
|
<activity android:name=".Loader" android:label="RenderDoc" android:exported="true" android:screenOrientation="landscape" android:configChanges="orientation|keyboardHidden">
|
|
<meta-data android:name="android.app.lib_name" android:value="renderdoccmd"/>
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest>
|
|
<!-- END_INCLUDE(manifest) -->
|