2020-05-08 08:18:20 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.freedesktop.gstreamer.vulkan.vulkan_1">
|
|
|
|
<uses-feature android:name="android.hardware.vulkan.version"
|
|
|
|
android:version="0x400003"
|
|
|
|
android:required="true"/>
|
|
|
|
<application android:label="@string/app_name">
|
|
|
|
<activity android:name="org.freedesktop.gstreamer.vulkan.Vulkan1"
|
2022-02-02 02:36:41 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:exported="true">
|
2020-05-08 08:18:20 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|