Android: Update to 2.1.0-pr.2

This commit is contained in:
KeatonTheBot
2026-03-27 13:21:36 -05:00
parent 637c8130a3
commit 6c1c05dc5d
2 changed files with 10 additions and 6 deletions
+5 -5
View File
@@ -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'
+5 -1
View File
@@ -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<AssemblyInformationalVersionAttribute>()?.InformationalVersion;
public static string Version =>
IsValid || !RuntimeFeature.IsDynamicCodeCompiled
? PlatformInfo.IsBionic ? "Bionic_2.1.0-pr.2" : BuildVersion
: Assembly.GetEntryAssembly()!.GetCustomAttribute<AssemblyInformationalVersionAttribute>()
?.InformationalVersion;
}
}