xref: /aosp_15_r20/cts/tests/tests/content/HelloWorldApp/AndroidManifestNonDefaultFlags.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="false"
8         android:allowClearUserData="false"
9         android:allowClearUserDataOnFailedRestore="false"
10         android:defaultToDeviceProtectedStorage="true"
11         android:requestLegacyExternalStorage="true"
12         android:hasFragileUserData="true"
13         android:icon="@mipmap/ic_launcher"
14         android:label="@string/app_name"
15         android:roundIcon="@mipmap/ic_launcher_round"
16         android:theme="@style/AppTheme">
17
18        <activity android:name=".MainActivity"
19             android:label="@string/app_name"
20             android:theme="@style/AppTheme.NoActionBar"
21             android:exported="true">
22            <intent-filter>
23                <action android:name="android.intent.action.MAIN"/>
24
25                <category android:name="android.intent.category.LAUNCHER"/>
26            </intent-filter>
27        </activity>
28
29        <!-- (b/197936012) Remove startup provider due to test timeout issue -->
30        <provider
31            android:name="androidx.startup.InitializationProvider"
32            android:authorities="${applicationId}.androidx-startup"
33            tools:node="remove" />
34
35    </application>
36
37    <supports-screens
38        android:smallScreens="true"
39        android:normalScreens="true"
40        android:largeScreens="true"
41        android:xlargeScreens="true"
42        android:resizeable="true"
43        android:anyDensity="true"
44    />
45
46</manifest>
47