| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- BEGIN_INCLUDE(manifest) --> | 2 <!-- BEGIN_INCLUDE(manifest) --> |
| 3 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 3 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 4 package="org.skia.vulkanviewer" | 4 package="org.skia.viewer" |
| 5 android:versionCode="1" | 5 android:versionCode="1" |
| 6 android:versionName="1.0"> | 6 android:versionName="1.0"> |
| 7 | 7 |
| 8 <application | 8 <application |
| 9 android:allowBackup="false" | 9 android:allowBackup="false" |
| 10 android:label="VulkanViewer"> | 10 android:label="Viewer"> |
| 11 | 11 |
| 12 <activity android:name=".VulkanViewerActivity" | 12 <activity android:name=".ViewerActivity" |
| 13 android:label="VulkanViewer" | 13 android:label="Viewer" |
| 14 android:screenOrientation="portrait" | 14 android:screenOrientation="portrait" |
| 15 android:configChanges="orientation|keyboardHidden"> | 15 android:configChanges="orientation|keyboardHidden"> |
| 16 <meta-data android:name="android.app.lib_name" | 16 <meta-data android:name="android.app.lib_name" |
| 17 android:value="vulkanviewer" /> | 17 android:value="viewer" /> |
| 18 <intent-filter> | 18 <intent-filter> |
| 19 <action android:name="android.intent.action.MAIN" /> | 19 <action android:name="android.intent.action.MAIN" /> |
| 20 <category android:name="android.intent.category.LAUNCHER" /> | 20 <category android:name="android.intent.category.LAUNCHER" /> |
| 21 </intent-filter> | 21 </intent-filter> |
| 22 </activity> | 22 </activity> |
| 23 </application> | 23 </application> |
| 24 | 24 |
| 25 </manifest> | 25 </manifest> |
| 26 <!-- END_INCLUDE(manifest) --> | 26 <!-- END_INCLUDE(manifest) --> |
| OLD | NEW |