xref: /aosp_15_r20/cts/tests/tests/content/HelloWorldApp/AndroidManifest.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.helloworld">
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            <intent-filter>
23                <action android:name="android.intent.action.PMTEST"/>
24                <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST"/>
25            </intent-filter>
26        </activity>
27
28        <!-- (b/197936012) Remove startup provider due to test timeout issue -->
29        <provider
30            android:name="androidx.startup.InitializationProvider"
31            android:authorities="${applicationId}.androidx-startup"
32            tools:node="remove" />
33
34        <provider android:name=".TestContentProvider"
35                  android:authorities="com.example.helloworld.testcontentprovider"
36                  android:exported="true">
37            <intent-filter>
38                <action android:name="com.example.helloworld.provider"/>
39            </intent-filter>
40        </provider>
41
42        <service android:name=".TestService"
43                 android:exported="true">
44            <intent-filter>
45                <action android:name="com.example.helloworld.service"/>
46            </intent-filter>
47        </service>
48
49    </application>
50
51</manifest>
52