aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/apps/skqp/src/main/AndroidManifest.xml
blob: f39fddad56e38524c8ea6fb4b584b541c934a532 (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
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="org.skia.skqp"
          android:versionCode="1"
          android:versionName="1.0">

  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

  <application
      android:allowBackup="false"
      android:theme="@style/AppTheme"
      android:label="SkQP"
      android:debuggable="true">

      <activity android:name=".MainActivity">
          <intent-filter>
              <action android:name="android.intent.action.MAIN" />
              <category android:name="android.intent.category.LAUNCHER" />
          </intent-filter>
      </activity>
      <activity
          android:name=".SkQPActivity"
          android:label="@string/title_activity_skqp"
          android:theme="@style/AppTheme.NoActionBar">
          <intent-filter>
              <action android:name="com.google.intent.action.TEST_LOOP"/>
              <category android:name="android.intent.category.DEFAULT"/>
              <data android:mimeType="application/javascript"/>
          </intent-filter>
      </activity>
      <uses-library android:name="android.test.runner" />
  </application>
  <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
                   android:targetPackage="org.skia.skqp"></instrumentation>
</manifest>