mirror of
https://github.com/openai/codex.git
synced 2026-04-28 16:45:54 +00:00
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>
16 lines
517 B
XML
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>
|