Split Android Codex launcher entrypoints

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Iliyan Malchev
2026-04-05 12:08:04 -07:00
parent 2d0948430c
commit cb5aca5081
7 changed files with 111 additions and 38 deletions

View File

@@ -40,6 +40,7 @@
<activity
android:name=".MainActivity"
android:exported="true"
android:label="@string/app_name_manager"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -47,6 +48,19 @@
</intent-filter>
</activity>
<activity-alias
android:name=".CodexSessionLauncherActivity"
android:exported="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:targetActivity=".CreateSessionActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>
<activity
android:name=".CreateSessionActivity"
android:documentLaunchMode="always"