Moved to complete Compose layout, rewrote all composables, removed all xml layouts. Changed navigation component.

This commit is contained in:
sockenklaus
2022-07-21 03:30:34 +02:00
parent 8f691b30d8
commit f637007e64
32 changed files with 818 additions and 767 deletions

View File

@@ -67,39 +67,46 @@ android {
dependencies {
implementation 'androidx.room:room-runtime:2.4.2'
implementation "androidx.compose.ui:ui:1.3.0-alpha01"
implementation "androidx.compose.ui:ui-tooling-preview:1.3.0-alpha01"
implementation 'androidx.compose.material:material-icons-extended:1.3.0-alpha01'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.0'
kapt 'androidx.room:room-compiler:2.4.2'
implementation 'androidx.room:room-rxjava3:2.4.2'
implementation "androidx.room:room-paging:2.4.2"
implementation "androidx.room:room-ktx:2.4.2"
kapt 'androidx.room:room-compiler:2.4.2'
implementation "androidx.compose.ui:ui:1.3.0-alpha01"
implementation "androidx.compose.ui:ui-tooling-preview:1.3.0-alpha01"
implementation 'androidx.compose.material:material-icons-extended:1.3.0-alpha01'
implementation 'androidx.compose.material:material:1.3.0-alpha01'
implementation 'androidx.compose.runtime:runtime-livedata:1.1.1'
implementation 'androidx.compose.animation:animation:1.3.0-alpha01'
implementation 'androidx.compose.ui:ui-tooling:1.3.0-alpha01'
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.3.0-alpha01'
debugImplementation "androidx.compose.ui:ui-test-manifest:1.1.1"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.0'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.5.0'
implementation 'com.google.android.material:material:1.7.0-alpha03'
implementation 'com.google.android.material:compose-theme-adapter:1.1.14'
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation "androidx.constraintlayout:constraintlayout-compose:1.0.1"
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.0'
implementation "androidx.navigation:navigation-compose:2.5.0"
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.activity:activity-compose:1.5.0'
implementation 'androidx.compose.material:material:1.3.0-alpha01'
implementation 'androidx.compose.animation:animation:1.3.0-alpha01'
implementation 'androidx.compose.ui:ui-tooling:1.3.0-alpha01'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.5.0'
implementation 'com.google.android.material:compose-theme-adapter:1.1.14'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.3.0-alpha01'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
debugImplementation "androidx.compose.ui:ui-test-manifest:1.1.1"
}