xref: /aosp_15_r20/cts/tests/tests/content/HelloWorldApp/AndroidManifestSufficientVerifierReject.xml (revision b7c941bb3fa97aba169d73cee0bed2de8ac964bf)
1<?xml version="1.0" encoding="utf-8"?>
2
3<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4     xmlns:tools="http://schemas.android.com/tools"
5     package="com.example.hellosufficient">
6
7    <application android:allowBackup="true"
8         android:debuggable="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:theme="@style/AppTheme">
14        <activity android:name=".MainActivity"
15             android:label="@string/app_name"
16             android:theme="@style/AppTheme.NoActionBar"
17             android:exported="true">
18            <intent-filter>
19                <action android:name="android.intent.action.MAIN"/>
20                <category android:name="android.intent.category.LAUNCHER"/>
21            </intent-filter>
22        </activity>
23        <receiver
24            android:name=".RejectReceiver"
25            android:exported="true"
26            android:permission="android.permission.BIND_PACKAGE_VERIFIER" >
27            <intent-filter>
28                <action android:name="android.intent.action.PACKAGE_NEEDS_VERIFICATION" />
29                <data android:mimeType="application/vnd.android.package-archive" />
30            </intent-filter>
31        </receiver>
32
33        <!-- (b/197936012) Remove startup provider due to test timeout issue -->
34        <provider
35            android:name="androidx.startup.InitializationProvider"
36            android:authorities="${applicationId}.androidx-startup"
37            tools:node="remove" />
38
39    </application>
40
41</manifest>
42