Add Android Agent and Genie scaffolding

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Iliyan Malchev
2026-03-19 00:12:18 -07:00
parent 535c3f8d03
commit 6450c8ccbc
17 changed files with 2928 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
package com.openai.codexd
import android.app.agent.AgentService
import android.app.agent.AgentSessionInfo
import android.util.Log
class CodexAgentService : AgentService() {
companion object {
private const val TAG = "CodexAgentService"
}
override fun onSessionChanged(session: AgentSessionInfo) {
Log.i(TAG, "onSessionChanged $session")
}
override fun onSessionRemoved(sessionId: String) {
Log.i(TAG, "onSessionRemoved sessionId=$sessionId")
}
}