| Index: platform_tools/android/apps/vulkanviewer/src/main/AndroidManifest.xml
|
| diff --git a/platform_tools/android/apps/vulkanviewer/src/main/AndroidManifest.xml b/platform_tools/android/apps/vulkanviewer/src/main/AndroidManifest.xml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3220c31bd178791cf3411c294e77f4df0fb7db6c
|
| --- /dev/null
|
| +++ b/platform_tools/android/apps/vulkanviewer/src/main/AndroidManifest.xml
|
| @@ -0,0 +1,26 @@
|
| +<?xml version="1.0" encoding="utf-8"?>
|
| +<!-- BEGIN_INCLUDE(manifest) -->
|
| +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
| + package="com.skia.vulkanviewer"
|
| + android:versionCode="1"
|
| + android:versionName="1.0">
|
| +
|
| + <application
|
| + android:allowBackup="false"
|
| + android:label="VulkanViewer">
|
| +
|
| + <activity android:name=".VulkanViewerActivity"
|
| + android:label="VulkanViewer"
|
| + android:screenOrientation="portrait"
|
| + android:configChanges="orientation|keyboardHidden">
|
| + <meta-data android:name="android.app.lib_name"
|
| + android:value="vulkanviewer" />
|
| + <intent-filter>
|
| + <action android:name="android.intent.action.MAIN" />
|
| + <category android:name="android.intent.category.LAUNCHER" />
|
| + </intent-filter>
|
| + </activity>
|
| + </application>
|
| +
|
| +</manifest>
|
| +<!-- END_INCLUDE(manifest) -->
|
|
|