diff --git a/src/KenjinxAndroid/app/build.gradle b/src/KenjinxAndroid/app/build.gradle index d4996d206..7a9f53c8b 100644 --- a/src/KenjinxAndroid/app/build.gradle +++ b/src/KenjinxAndroid/app/build.gradle @@ -12,7 +12,7 @@ android { minSdk 29 targetSdk 36 versionCode 20100 - versionName '2.1.0-pr.1' + versionName '2.1.0-pr.2' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" @@ -138,7 +138,7 @@ tasks.named("preBuild") { dependencies { runtimeOnly project(":libkenjinx") - implementation 'androidx.activity:activity-compose:1.12.4' + implementation 'androidx.activity:activity-compose:1.13.0' implementation 'androidx.appcompat:appcompat:1.7.1' implementation 'androidx.compose.material3:material3' implementation 'androidx.compose.material:material-icons-extended:1.7.8' @@ -146,7 +146,7 @@ dependencies { implementation 'androidx.compose.ui:ui-graphics' implementation 'androidx.compose.ui:ui-tooling-preview' implementation 'androidx.constraintlayout:constraintlayout:2.2.1' - implementation 'androidx.core:core-ktx:1.17.0' + implementation 'androidx.core:core-ktx:1.18.0' implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.10.0' implementation 'androidx.navigation:navigation-compose:2.9.7' implementation 'androidx.preference:preference-ktx:1.2.1' @@ -163,12 +163,12 @@ dependencies { implementation 'net.lingala.zip4j:zip4j:2.11.6' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2' - implementation platform('androidx.compose:compose-bom:2026.02.01') + implementation platform('androidx.compose:compose-bom:2026.03.01') implementation platform('org.jetbrains.kotlin:kotlin-bom:2.3.10') androidTestImplementation 'androidx.compose.ui:ui-test-junit4' androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0' androidTestImplementation 'androidx.test.ext:junit:1.3.0' - androidTestImplementation platform('androidx.compose:compose-bom:2026.02.01') + androidTestImplementation platform('androidx.compose:compose-bom:2026.03.01') testImplementation 'junit:junit:4.13.2' debugImplementation 'androidx.compose.ui:ui-test-manifest' debugImplementation 'androidx.compose.ui:ui-tooling' diff --git a/src/Ryujinx.Common/ReleaseInformation.cs b/src/Ryujinx.Common/ReleaseInformation.cs index f2d4f1365..26185cf50 100644 --- a/src/Ryujinx.Common/ReleaseInformation.cs +++ b/src/Ryujinx.Common/ReleaseInformation.cs @@ -27,6 +27,10 @@ namespace Ryujinx.Common public static bool IsFlatHubBuild => IsValid && ReleaseChannelOwner.Equals(FlatHubChannelOwner); - public static string Version => (IsValid || !RuntimeFeature.IsDynamicCodeCompiled) ? (PlatformInfo.IsBionic ? "Bionic_2.1.0-pr.1" : BuildVersion) : Assembly.GetEntryAssembly()!.GetCustomAttribute()?.InformationalVersion; + public static string Version => + IsValid || !RuntimeFeature.IsDynamicCodeCompiled + ? PlatformInfo.IsBionic ? "Bionic_2.1.0-pr.2" : BuildVersion + : Assembly.GetEntryAssembly()!.GetCustomAttribute() + ?.InformationalVersion; } }