messenger-android

Android graphical user interfaces for GNUnet Messenger
Log | Files | Refs | README | LICENSE

AndroidManifest.xml (1304B)


      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">
      5 
      6     <!-- Query to allow binding to GNUnet IPC service -->
      7     <queries>
      8         <package android:name="org.gnu.gnunet" />
      9         <intent>
     10             <action android:name="org.gnunet.gnunetmessenger.ipc.BIND_GNUNET_CHAT" />
     11         </intent>
     12     </queries>
     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.GNUnetMessenger"
     23         tools:targetApi="31">
     24 
     25         <!-- Main Activity with Intent Filter for LAUNCHER -->
     26         <activity
     27             android:name=".MainActivity"
     28             android:exported="true">
     29             <intent-filter>
     30                 <action android:name="android.intent.action.MAIN" />
     31                 <category android:name="android.intent.category.LAUNCHER" />
     32             </intent-filter>
     33         </activity>
     34 
     35     </application>
     36 
     37 </manifest>