make code review changes

switch to TaskHandler
switch to XML

Changelog: changed
This commit is contained in:
Kai
2025-06-04 12:59:48 -05:00
parent 42dd8d6152
commit 4ce9f64808
20 changed files with 908 additions and 736 deletions
+1 -14
View File
@@ -143,10 +143,6 @@ android {
}
buildFeatures {
buildConfig true
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.2"
}
sourceSets {
main {
@@ -160,9 +156,7 @@ android {
dependencies {
implementation 'com.google.dagger:dagger:2.48'
implementation 'androidx.test:monitor:1.7.2'
implementation 'androidx.compose.material:material-icons-extended:1.7.8'
implementation 'com.github.bumptech.glide:compose:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout-compose:1.1.1'
implementation 'com.google.android.material:material:1.12.0'
annotationProcessor 'com.google.dagger:dagger-compiler:2.48'
//Core
@@ -222,7 +216,6 @@ dependencies {
//Database
implementation("androidx.room:room-runtime:2.6.1")
annotationProcessor("androidx.room:room-compiler:2.6.1")
debugImplementation 'androidx.compose.ui:ui-tooling:1.7.8'
ksp("androidx.room:room-compiler:2.6.1")
implementation("androidx.room:room-ktx:2.6.1")
@@ -236,10 +229,4 @@ dependencies {
testImplementation "org.mockito:mockito-core:5.4.0"
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
//Compose
def composeBom = platform('androidx.compose:compose-bom:2025.02.00')
implementation composeBom
androidTestImplementation composeBom
implementation 'androidx.compose.material3:material3'
}