diff --git a/next/kmp/app/androidApp/build.gradle.kts b/next/kmp/app/androidApp/build.gradle.kts index 8162c9f91..fa134f45b 100644 --- a/next/kmp/app/androidApp/build.gradle.kts +++ b/next/kmp/app/androidApp/build.gradle.kts @@ -118,7 +118,7 @@ android { if (channel == "stable") { applicationIdSuffix = null versionNameSuffix = null - manifestPlaceholders["appName"] = "@string/app_name" + manifestPlaceholders["appName"] = "Dweb Browser";//"@string/app_name" } else { applicationIdSuffix = ".$channel" versionNameSuffix = "-$channel" diff --git a/next/kmp/app/androidApp/src/androidMain/kotlin/info/bagen/dwebbrowser/SplashActivity.kt b/next/kmp/app/androidApp/src/androidMain/kotlin/info/bagen/dwebbrowser/SplashActivity.kt index c250d364a..467279d60 100644 --- a/next/kmp/app/androidApp/src/androidMain/kotlin/info/bagen/dwebbrowser/SplashActivity.kt +++ b/next/kmp/app/androidApp/src/androidMain/kotlin/info/bagen/dwebbrowser/SplashActivity.kt @@ -121,8 +121,6 @@ class SplashActivity : AppCompatActivity() { val grant = grantInstaller(agree) setContent { - var localPrivacy by remember { mutableStateOf("") } - DwebBrowserAppTheme { SplashMainView( Modifier, @@ -132,6 +130,7 @@ class SplashActivity : AppCompatActivity() { return@DwebBrowserAppTheme } + var localPrivacy by remember { mutableStateOf("") } SplashPrivacyDialog( openHome = { DwebBrowserApp.appContext.saveBoolean(keyEnableAgreement, true) diff --git a/next/kmp/gradle/libs.versions.toml b/next/kmp/gradle/libs.versions.toml index 7bae18f99..0517c278b 100644 --- a/next/kmp/gradle/libs.versions.toml +++ b/next/kmp/gradle/libs.versions.toml @@ -3,8 +3,8 @@ compileSdkVersion = "35" # Int buildToolsVersion = "29.0.2" minSdkVersion = "28" # Int targetSdkVersion = "35" # Int -versionCode = "141" # Int -versionName = "3.250112.1" +versionCode = "142" # Int +versionName = "3.250113.0" kotlinCompilerExtensionVersion = "1.5.15" jvmTarget = "17" javaVersion = "VERSION_17" # JavaVersion.VERSION_17