1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.providers.media.tools.photopicker">
4
5    <application
6        android:allowBackup="true"
7        android:label="PhotoPickerTool"
8        android:supportsRtl="true">
9        <activity
10            android:name=".PhotoPickerToolActivity"
11            android:exported="true"
12            android:theme="@style/Theme.MaterialComponents.DayNight">
13            <intent-filter android:label="PhotoPickerTool">
14                <action android:name="android.intent.action.MAIN"/>
15                <category android:name="android.intent.category.LAUNCHER"/>
16            </intent-filter>
17        </activity>
18    </application>
19</manifest>
20