• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3          package="org.skia.skqp"
4          android:versionCode="1"
5          android:versionName="1.0">
6
7  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
8
9  <application
10      android:allowBackup="false"
11      android:theme="@style/AppTheme"
12      android:label="SkQP">
13
14      <activity android:name=".MainActivity">
15          <intent-filter>
16              <action android:name="android.intent.action.MAIN" />
17              <category android:name="android.intent.category.LAUNCHER" />
18          </intent-filter>
19      </activity>
20      <activity
21          android:name=".SkQPActivity"
22          android:label="@string/title_activity_skqp"
23          android:theme="@style/AppTheme.NoActionBar">
24          <intent-filter>
25              <action android:name="com.google.intent.action.TEST_LOOP"/>
26              <category android:name="android.intent.category.DEFAULT"/>
27              <data android:mimeType="application/javascript"/>
28          </intent-filter>
29      </activity>
30      <uses-library android:name="android.test.runner" />
31  </application>
32  <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
33                   android:targetPackage="org.skia.skqp"></instrumentation>
34</manifest>
35