1
0

chore: Update dependencies and build configuration

This commit is contained in:
Natsu 2024-06-19 03:28:24 +07:00
parent b4ac90ded8
commit fada29343c
Signed by: NatsumeLS
GPG Key ID: 6DB67FB460CF46C6

View File

@ -70,13 +70,22 @@ android {
dataBinding {
enable true
}
applicationVariants.configureEach { variant ->
variant.mergeAssetsProvider.configure { mergeAssetsTask ->
mergeAssetsTask.doLast {
delete(fileTree(dir: mergeAssetsTask.outputDir, includes: ['gakumas-local/scripts/**',
'gakumas-local/README.md']))
}
}
}
}
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 platform('androidx.compose:compose-bom:2024.06.00')
implementation 'androidx.compose.material3:material3'
implementation 'com.google.android.material:material:1.12.0'
@ -84,6 +93,6 @@ dependencies {
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.20"
implementation 'com.google.code.gson:gson:2.11.0'
}