mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
5b8c8e30a4
Change package name to "renderdoc.org.demos" instead of "org.renderdoc.demos" (RenderDoc filters out packages containing "org.renderdoc.") Added an <intent-filter> to the Android manifest. This registers the activity with the android package system which means RenderDoc Launch Application knows the activity name to launch. Used category CATEGORY_ALTERNATIVE to prevent the activity from appearing on the launcher UI.
24 lines
1.0 KiB
XML
24 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.INTERNET" />
|
|
|
|
<!-- Use GL ES 3.2 version -->
|
|
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
|
|
|
|
<application android:debuggable="true" android:label="demos" 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="demos"/>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.CATEGORY_ALTERNATIVE" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest>
|
|
<!-- END_INCLUDE(manifest) -->
|