mirror of
https://github.com/openai/codex.git
synced 2026-04-30 17:36:40 +00:00
Move Android bridge traffic onto AIDL
Add a shared Binder contract for the Agent/Genie control plane and switch the Genie runtime to use the exported Agent bridge service for runtime status and proxied HTTP, leaving AgentSDK questions only for real Genie dialogue. Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<permission
|
||||
android:name="com.openai.codex.permission.BIND_AGENT_BRIDGE"
|
||||
android:protectionLevel="signature" />
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
|
||||
@@ -20,6 +24,11 @@
|
||||
</intent-filter>
|
||||
</service>
|
||||
|
||||
<service
|
||||
android:name=".CodexAgentBridgeService"
|
||||
android:exported="true"
|
||||
android:permission="com.openai.codex.permission.BIND_AGENT_BRIDGE" />
|
||||
|
||||
<service
|
||||
android:name=".CodexdForegroundService"
|
||||
android:exported="true"
|
||||
|
||||
Reference in New Issue
Block a user