aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/apps/viewer/src/main/AndroidManifest.xml
blob: a1fd9714e369f711d64aab1427bdcf63c928c8fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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:theme="@android:style/Theme.Holo.Light"
      android:name=".ViewerApplication"
      android:label="Viewer">

    <activity android:name=".ViewerActivity">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
  </application>

</manifest>
<!-- END_INCLUDE(manifest) -->