messenger-android

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

commit 39822deb9b30ae58238cd858214d69a443cdbd18
parent 0e38eafc11c16f9e9aaf8f799b95c4a94930d4ba
Author: t3sserakt <t3ss@posteo.de>
Date:   Tue,  9 Dec 2025 10:13:15 +0100

fix: binding

Diffstat:
MGNUnetMessenger/app/src/main/AndroidManifest.xml | 26++++++++++++++++----------
1 file changed, 16 insertions(+), 10 deletions(-)

diff --git a/GNUnetMessenger/app/src/main/AndroidManifest.xml b/GNUnetMessenger/app/src/main/AndroidManifest.xml @@ -1,7 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" - package="org.gnunet.gnunetmessenger"> <!-- Replace with your actual package name --> + package="org.gnunet.gnunetmessenger"> + + <!-- Query to allow binding to GNUnet IPC service --> + <queries> + <package android:name="org.gnu.gnunet" /> + <intent> + <action android:name="org.gnunet.gnunetmessenger.ipc.BIND_GNUNET_CHAT" /> + </intent> + </queries> <application android:allowBackup="true" @@ -18,14 +26,12 @@ <activity android:name=".MainActivity" android:exported="true"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - - </activity> - -</application> + </application> - </manifest> +</manifest>