Files
codex/android/genie/src/main/AndroidManifest.xml
Iliyan Malchev 3d4274962c Implement framework-mediated Agent bridge for Genie
Add an internal AgentSDK question/answer bridge so Genie can reach Agent-owned codexd state from the paired app sandbox, keep the Android daemon on abstract unix sockets, and document the runtime constraint this proves on the emulator.

Co-authored-by: Codex <noreply@openai.com>
2026-03-26 07:19:34 -07:00

16 lines
517 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="false"
android:label="@string/app_name">
<service
android:name=".CodexGenieService"
android:exported="true"
android:permission="android.permission.BIND_GENIE_SERVICE">
<intent-filter>
<action android:name="android.app.agent.GenieService" />
</intent-filter>
</service>
</application>
</manifest>