1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2018 The Android Open Source Project
4  ~
5  ~ Licensed under the Apache License, Version 2.0 (the "License");
6  ~ you may not use this file except in compliance with the License.
7  ~ You may obtain a copy of the License at
8  ~
9  ~      http://www.apache.org/licenses/LICENSE-2.0
10  ~
11  ~ Unless required by applicable law or agreed to in writing, software
12  ~ distributed under the License is distributed on an "AS IS" BASIS,
13  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  ~ See the License for the specific language governing permissions and
15  ~ limitations under the License.
16-->
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18    xmlns:tools="http://schemas.android.com/tools">
19
20    <application tools:ignore="AllowBackup,GoogleAppIndexingWarning,MissingApplicationIcon">
21        <activity
22            android:name="androidx.activity.integration.testapp.MainActivity"
23            android:exported="true">
24            <intent-filter>
25                <action android:name="android.intent.action.MAIN" />
26                <category android:name="android.intent.category.LAUNCHER" />
27            </intent-filter>
28        </activity>
29        <activity
30            android:name="androidx.activity.integration.testapp.PipActivity"
31            android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
32            android:exported="true"
33            android:supportsPictureInPicture="true" />
34        <activity
35            android:name="androidx.activity.integration.testapp.EdgeToEdgeActivity"
36            android:exported="true"
37            android:label="EdgeToEdgeActivity"
38            android:theme="@style/Theme.EdgeToEdge.SplashScreen"
39            android:windowSoftInputMode="adjustResize">
40            <intent-filter>
41                <action android:name="android.intent.action.MAIN" />
42                <category android:name="android.intent.category.LAUNCHER" />
43            </intent-filter>
44            <intent-filter>
45                <action android:name="androidx.activity.integration.testapp.EDGE_TO_EDGE_ACTIVITY" />
46                <category android:name="android.intent.category.DEFAULT" />
47            </intent-filter>
48        </activity>
49
50        <provider
51            android:name="androidx.core.content.FileProvider"
52            android:authorities="androidx.activity.integration.testapp"
53            android:exported="false"
54            android:grantUriPermissions="true">
55            <meta-data
56                android:name="android.support.FILE_PROVIDER_PATHS"
57                android:resource="@xml/file_paths" />
58        </provider>
59    </application>
60
61    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
62    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
63
64    <uses-sdk tools:overrideLibrary="androidx.core.splashscreen" />
65
66</manifest>
67