1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:tools="http://schemas.android.com/tools">
4
5    <application
6        android:allowBackup="false"
7        android:hardwareAccelerated="true"
8        android:label="@string/app_name"
9        android:theme="@style/AppTheme"
10        tools:ignore="UnusedAttribute">
11        <activity
12            android:name=".MainActivity"
13            android:exported="true">
14            <intent-filter>
15                <action android:name="android.intent.action.MAIN" />
16
17                <category android:name="android.intent.category.DEFAULT" />
18                <category android:name="android.intent.category.LAUNCHER" />
19            </intent-filter>
20        </activity>
21        <activity
22            android:name=".JavaScriptEngineEvaluationActivity"
23            android:exported="true"
24            android:theme="@style/AppTheme" />
25        <activity
26            android:name=".WebViewEvaluationActivity"
27            android:exported="true"
28            android:process=":webview"
29            android:theme="@style/AppTheme" />
30    </application>
31
32</manifest>