mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
26d823905e
* The apk targets api level 21 which is 5.0, so it still won't install on anything older. * We pop up a big warning to the user the first time they try and select such a remote host.
21 lines
958 B
XML
21 lines
958 B
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.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) -->
|