mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 09:00:44 +00:00
b8bd99a24a
* This means that at least when nothing else is happening the remote server isn't completely blank and unresponsive.
22 lines
999 B
XML
22 lines
999 B
XML
<?xml version="1.0"?>
|
|
<!-- BEGIN_INCLUDE(manifest) -->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.renderdoc.renderdoccmd">
|
|
|
|
<!-- This is the platform API where NativeActivity was introduced. -->
|
|
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="23"/>
|
|
|
|
<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="0x00030002" android:required="true" />
|
|
|
|
<application 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) -->
|