aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/apps/viewer/src/main/AndroidManifest.xml
blob: 2ed88e1da65447bdf4bc390d24c196e09ede204c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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) -->