1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.nn.crashtest"
4    android:versionCode="2"
5    android:versionName="2">
6
7  <application
8      android:allowBackup="true"
9      android:icon="@mipmap/ic_launcher"
10      android:label="@string/app_name"
11      android:roundIcon="@mipmap/ic_launcher_round"
12      android:supportsRtl="true"
13      android:debuggable="true"
14      android:theme="@style/AppTheme">
15    <activity android:exported="true" android:name="com.android.nn.crashtest.MainActivity">
16      <intent-filter>
17        <action android:name="android.intent.action.MAIN" />
18
19        <category android:name="android.intent.category.LAUNCHER" />
20      </intent-filter>
21    </activity>
22
23    <service android:name="com.android.nn.crashtest.core.OutOfProcessCrashTestService"
24        android:process=":CrashTest" />
25    <service android:name="com.android.nn.crashtest.core.InProcessCrashTestService"
26        android:process=".CrashTest" />
27    <!--provider entry is a workaround for b/195309961-->
28    <provider
29            xmlns:tools="http://schemas.android.com/tools"
30            android:name="androidx.startup.InitializationProvider"
31            android:authorities="com.google.android.storagemanager.androidx-startup"
32            tools:replace="android:authorities" />
33  </application>
34
35  <uses-sdk android:minSdkVersion="27" />
36
37</manifest>
38