Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ android {
}

defaultConfig {
applicationId = "app.gamenative"
applicationId = "com.miHoYo.GenshinImpact"

minSdk = 26
targetSdk = 28
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package app.gamenative.utils

import android.content.Context
import android.content.Intent
import app.gamenative.BuildConfig
import app.gamenative.data.GameSource
import com.winlator.container.Container
import com.winlator.container.ContainerData
Expand All @@ -16,7 +17,7 @@ object IntentLaunchManager {

private const val EXTRA_APP_ID = "app_id"
private const val EXTRA_CONTAINER_CONFIG = "container_config"
private const val ACTION_LAUNCH_GAME = "app.gamenative.LAUNCH_GAME"
private val ACTION_LAUNCH_GAME = BuildConfig.APPLICATION_ID + ".LAUNCH_GAME"
private const val MAX_CONFIG_JSON_SIZE = 50000 // 50KB limit to prevent memory exhaustion

data class LaunchRequest(
Expand Down
Loading