<?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">

      <activity
          android:name=".MainActivity"
          android:exported="true">
          <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"
          android:exported="true">
          <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="androidx.test.runner.AndroidJUnitRunner"
                   android:targetPackage="org.skia.skqp"></instrumentation>
</manifest>
