blob: 2ed88e1da65447bdf4bc390d24c196e09ede204c [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!-- BEGIN_INCLUDE(manifest) -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.skia.viewer"
android:versionCode="1"
android:versionName="1.0">
<application
android:allowBackup="false"
android:label="Viewer">
<activity android:name=".ViewerActivity"
android:label="Viewer"
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden">
<meta-data android:name="android.app.lib_name"
android:value="viewer" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
<!-- END_INCLUDE(manifest) -->