Dashboard settings, game icons, default execution mode, fix native lib linking
- Add AppPreferences for persisted default streaming mode (IN_GAME/APP_STREAMING) - Add GameInfoProvider to resolve package names to icons via PackageManager - Add GameInfoRow composable used across dashboard, plans, and clients screens - Show backend version in dashboard status card - Default execution mode toggle on dashboard, picked up by new plans - Plan edit mode with full CRUD support - Fix CMake IMPORTED_NO_SONAME to prevent absolute Windows paths in DT_NEEDED - Catch Throwable (not just Exception) for UnsatisfiedLinkError in streaming start
This commit is contained in:
@@ -99,7 +99,7 @@ class StreamingManager @Inject constructor() {
|
||||
_error.value = "Failed to start streaming engine"
|
||||
_state.value = StreamingState.ERROR
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
} catch (e: Throwable) {
|
||||
Log.e(TAG, "Failed to start streaming", e)
|
||||
_error.value = e.message ?: "Unknown error"
|
||||
_state.value = StreamingState.ERROR
|
||||
|
||||
Reference in New Issue
Block a user