xref: /aosp_15_r20/cts/tests/tests/content/HelloWorldApp/AndroidManifestSdk1.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.test.sdk1_1"
6     android:versionCode="2">
7
8    <uses-sdk android:minSdkVersion="30" android:targetSdkVersion="34"/>
9
10    <application android:allowBackup="true"
11         android:debuggable="true"
12         android:icon="@mipmap/ic_launcher"
13         android:label="@string/app_name"
14         android:roundIcon="@mipmap/ic_launcher_round"
15         android:supportsRtl="true"
16         android:theme="@style/AppTheme">
17        <activity android:name=".MainActivity"
18             android:label="@string/app_name"
19             android:theme="@style/AppTheme.NoActionBar"
20             android:exported="true">
21            <intent-filter>
22                <action android:name="android.intent.action.MAIN"/>
23
24                <category android:name="android.intent.category.LAUNCHER"/>
25            </intent-filter>
26        </activity>
27        <service android:name=".FakeService" android:exported="true" />
28        <receiver android:name=".FakeReceiver" android:exported="true" />
29        <provider android:name=".FakeProvider"
30                  android:authorities="com.test.sdk1_1.FakeProvider"
31                  android:exported="true" />
32
33        <sdk-library android:name="com.test.sdk1" android:versionMajor="1" />
34
35        <!-- (b/197936012) Remove startup provider due to test timeout issue -->
36        <provider
37            android:name="androidx.startup.InitializationProvider"
38            android:authorities="${applicationId}.androidx-startup"
39            tools:node="remove" />
40
41        <property android:name="com.test.sdk1_1.TEST_PROPERTY"
42                  android:value="com.test.sdk1_1.testp1" />
43
44    </application>
45
46</manifest>
47