• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.RemoteHCI"
16        tools:targetApi="31">
17        <activity
18            android:name=".MainActivity"
19            android:exported="true"
20            android:label="@string/app_name"
21            android:theme="@style/Theme.RemoteHCI">
22            <intent-filter>
23                <action android:name="android.intent.action.MAIN" />
24                <category android:name="android.intent.category.LAUNCHER" />
25            </intent-filter>
26        </activity>
27    </application>
28
29</manifest>