1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:tools="http://schemas.android.com/tools">
4
5  <uses-permission android:name="android.permission.INTERNET" />
6
7  <application
8      android:allowBackup="true"
9      android:dataExtractionRules="@xml/data_extraction_rules"
10      android:fullBackupContent="@xml/backup_rules"
11      android:icon="@mipmap/ic_launcher"
12      android:label="@string/app_name"
13      android:roundIcon="@mipmap/ic_launcher_round"
14      android:supportsRtl="true"
15      android:theme="@style/Theme.SamplePip"
16      tools:targetApi="31">
17    <activity
18        android:name=".MainActivity"
19        android:exported="true"
20        android:supportsPictureInPicture="true"
21        android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
22        android:label="@string/app_name"
23        android:theme="@style/Theme.SamplePip">
24      <intent-filter>
25        <action android:name="android.intent.action.MAIN"/>
26
27        <category android:name="android.intent.category.LAUNCHER"/>
28      </intent-filter>
29
30      <meta-data
31          android:name="android.app.lib_name"
32          android:value=""/>
33    </activity>
34  </application>
35
36</manifest>