diff --git a/mobile/build.gradle.kts b/mobile/build.gradle.kts index 000948ec..9a5a3574 100644 --- a/mobile/build.gradle.kts +++ b/mobile/build.gradle.kts @@ -31,7 +31,7 @@ android { minSdk = 28 targetSdk = 34 versionCode = 1015 - versionName = "2.17.0" + versionName = "2.17.1" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" ksp { arg("room.expandProjection", "true") @@ -94,7 +94,7 @@ dependencies { coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4") ksp("androidx.room:room-compiler:$roomVersion") implementation(kotlin("stdlib-jdk8")) - implementation("androidx.browser:browser:1.8.0-beta02") + implementation("androidx.browser:browser:1.8.0-rc01") implementation("androidx.core:core-ktx:1.12.0") implementation("androidx.fragment:fragment-ktx:1.6.2") implementation("androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion") diff --git a/mobile/src/main/java/be/mygod/vpnhotspot/BootReceiver.kt b/mobile/src/main/java/be/mygod/vpnhotspot/BootReceiver.kt index c42c2041..5a0a6d99 100644 --- a/mobile/src/main/java/be/mygod/vpnhotspot/BootReceiver.kt +++ b/mobile/src/main/java/be/mygod/vpnhotspot/BootReceiver.kt @@ -42,7 +42,7 @@ class BootReceiver : BroadcastReceiver() { } catch (_: FileNotFoundException) { null } catch (e: Exception) { - Timber.d("Boot config corrupted", e) + Timber.w("Boot config corrupted", e) null } private fun updateConfig(work: Config.() -> Boolean) = synchronized(BootReceiver) {