AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?> 2 3 <!-- 4 SPDX-FileCopyrightText: Amolith <amolith@secluded.site> 5 6 SPDX-License-Identifier: CC0-1.0 7 --> 8 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 10 xmlns:tools="http://schemas.android.com/tools"> 11 12 <uses-permission android:name="android.permission.INTERNET" /> 13 14 <application 15 android:allowBackup="true" 16 android:dataExtractionRules="@xml/data_extraction_rules" 17 android:fullBackupContent="@xml/backup_rules" 18 android:icon="@mipmap/ic_launcher" 19 android:label="@string/app_name" 20 android:roundIcon="@mipmap/ic_launcher_round" 21 android:supportsRtl="true" 22 android:theme="@style/Theme.Adresilo" 23 tools:targetApi="31"> 24 <activity 25 android:name=".MainActivity" 26 android:exported="true" 27 android:label="@string/app_name" 28 android:theme="@style/Theme.Adresilo"> 29 <intent-filter> 30 <action android:name="android.intent.action.VIEW" /> 31 <category android:name="android.intent.category.DEFAULT" /> 32 <category android:name="android.intent.category.BROWSABLE" /> 33 <data android:scheme="geo" /> 34 </intent-filter> 35 <intent-filter> 36 <action android:name="android.intent.action.MAIN" /> 37 <category android:name="android.intent.category.LAUNCHER" /> 38 </intent-filter> 39 </activity> 40 </application> 41 42 </manifest>