summaryrefslogtreecommitdiff
path: root/src/android/app/build.gradle.kts
diff options
context:
space:
mode:
authorGravatar Charles Lombardo2023-04-05 20:26:53 -0400
committerGravatar bunnei2023-06-03 00:05:51 -0700
commit233ae9ab691f2e6fe65d97fdd58b2ac6e015ad38 (patch)
treea9e82ac5af26b935ca0d5aeb9e7be9f780667369 /src/android/app/build.gradle.kts
parentandroid: Enforce Vulkan 1.1 support as minimum (diff)
downloadyuzu-233ae9ab691f2e6fe65d97fdd58b2ac6e015ad38.tar.gz
yuzu-233ae9ab691f2e6fe65d97fdd58b2ac6e015ad38.tar.xz
yuzu-233ae9ab691f2e6fe65d97fdd58b2ac6e015ad38.zip
android: MainActivity overhaul
This moves several parts of the main activity into fragments that manage themselves to react to changes. UI changes like the appearance of a new search view or when the games list changes now gets updated via multiple view models. This also starts a conversion to the androidx navigation component which furthers the goals mentioned previously with more fragment responsibility. This will eventually allow us to use one activity with interchanging fragments and multiple view models that are stored within that central activity. fdas
Diffstat (limited to 'src/android/app/build.gradle.kts')
-rw-r--r--src/android/app/build.gradle.kts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts
index 552d4a721..d8ef02ac1 100644
--- a/src/android/app/build.gradle.kts
+++ b/src/android/app/build.gradle.kts
@@ -155,6 +155,9 @@ dependencies {
155 implementation("org.ini4j:ini4j:0.5.4") 155 implementation("org.ini4j:ini4j:0.5.4")
156 implementation("androidx.constraintlayout:constraintlayout:2.1.4") 156 implementation("androidx.constraintlayout:constraintlayout:2.1.4")
157 implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0") 157 implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
158 implementation("androidx.navigation:navigation-fragment-ktx:2.5.3")
159 implementation("androidx.navigation:navigation-ui-ktx:2.5.3")
160 implementation("info.debatty:java-string-similarity:2.0.0")
158} 161}
159 162
160fun getVersion(): String { 163fun getVersion(): String {