1<!--
2  ~ Copyright 2022 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15  -->
16<manifest
17    xmlns:android="http://schemas.android.com/apk/res/android"
18    xmlns:tools="http://schemas.android.com/tools"
19    tools:node="merge">
20
21    <application
22        android:allowBackup="false"
23        android:label="Jetpack Baselineprofiles Target"
24        android:supportsRtl="true"
25        android:theme="@style/Theme.AppCompat"
26        tools:ignore="MissingApplicationIcon">
27
28        <activity
29            android:name=".EmptyActivity"
30            android:exported="true">
31            <intent-filter>
32                <action android:name="android.intent.action.MAIN" />
33                <category android:name="android.intent.category.LAUNCHER" />
34            </intent-filter>
35            <intent-filter>
36                <action android:name="androidx.benchmark.integration.baselineprofile.flavors.consumer.free.EMPTY_ACTIVITY" />
37                <category android:name="android.intent.category.DEFAULT" />
38            </intent-filter>
39        </activity>
40
41        <profileable android:shell="true" />
42    </application>
43</manifest>
44