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
15          android:name=".MainActivity"
16          android:exported="true">
17          <intent-filter>
18              <action android:name="android.intent.action.MAIN" />
19              <category android:name="android.intent.category.LAUNCHER" />
20          </intent-filter>
21      </activity>
22      <activity
23          android:name=".SkQPActivity"
24          android:label="@string/title_activity_skqp"
25          android:theme="@style/AppTheme.NoActionBar"
26          android:exported="true">
27          <intent-filter>
28              <action android:name="com.google.intent.action.TEST_LOOP"/>
29              <category android:name="android.intent.category.DEFAULT"/>
30              <data android:mimeType="application/javascript"/>
31          </intent-filter>
32      </activity>
33      <uses-library android:name="android.test.runner" />
34  </application>
35  <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
36                   android:targetPackage="org.skia.skqp"></instrumentation>
37</manifest>
38