AndroidManifest.xml (1074B)
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 package="org.gnunet.gnunetmessenger"> <!-- Replace with your actual package name --> 5 6 <application 7 android:allowBackup="true" 8 android:dataExtractionRules="@xml/data_extraction_rules" 9 android:fullBackupContent="@xml/backup_rules" 10 android:icon="@mipmap/ic_launcher" 11 android:label="@string/app_name" 12 android:roundIcon="@mipmap/ic_launcher_round" 13 android:supportsRtl="true" 14 android:theme="@style/Theme.GNUnetMessenger" 15 tools:targetApi="31"> 16 17 <!-- Main Activity with Intent Filter for LAUNCHER --> 18 <activity 19 android:name=".MainActivity" 20 android:exported="true"> 21 22 <intent-filter> 23 <action android:name="android.intent.action.MAIN" /> 24 <category android:name="android.intent.category.LAUNCHER" /> 25 </intent-filter> 26 27 </activity> 28 29 </application> 30 31 </manifest>