UI rewrite (#27)

* rewrite UI

* update submodule and ci

* update submodule

* AboutPage - use config
This commit is contained in:
chinosk
2024-06-24 03:20:00 -05:00
committed by GitHub
parent 64f147586f
commit d36666f436
31 changed files with 2343 additions and 112 deletions

View File

@@ -84,16 +84,37 @@ android {
dependencies {
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
implementation platform('androidx.compose:compose-bom:2023.08.00')
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.2'
implementation 'androidx.compose.material3:material3'
implementation 'com.google.android.material:material:1.12.0'
implementation "androidx.activity:activity-compose:1.9.0"
implementation "androidx.appcompat:appcompat:1.7.0"
implementation 'androidx.navigation:navigation-compose:2.7.7'
def composeBom = platform('androidx.compose:compose-bom:2024.06.00')
implementation(composeBom)
androidTestImplementation(composeBom)
implementation "androidx.compose.runtime:runtime"
implementation "androidx.compose.material:material"
implementation "androidx.compose.foundation:foundation"
implementation "androidx.compose.foundation:foundation-layout"
implementation "androidx.compose.animation:animation"
implementation "androidx.compose.ui:ui-tooling-preview"
androidTestImplementation "androidx.compose.ui:ui-test-junit4"
debugImplementation "androidx.compose.ui:ui-tooling"
debugImplementation "androidx.compose.ui:ui-test-manifest"
implementation "com.google.accompanist:accompanist-pager:0.30.0"
implementation "com.google.accompanist:accompanist-pager-indicators:0.30.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2"
implementation "io.coil-kt:coil-compose:2.6.0"
implementation "io.coil-kt:coil-svg:2.6.0"
implementation 'io.github.hexhacking:xdl:2.1.1'
implementation 'com.bytedance.android:shadowhook:1.0.9'
compileOnly 'de.robv.android.xposed:api:82'
implementation "org.jetbrains.kotlin:kotlin-reflect:1.9.0"
implementation "org.jetbrains.kotlin:kotlin-reflect:1.9.22"
implementation 'com.google.code.gson:gson:2.11.0'
}