build: add lifecycle-viewmodel-ktx

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-09-23 21:35:53 +05:30
parent b3ee3f44c4
commit 5260f454ef
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 3 additions and 1 deletions

View file

@ -66,7 +66,8 @@ dependencies {
implementation "androidx.compose.ui:ui-text:$compose_version" implementation "androidx.compose.ui:ui-text:$compose_version"
implementation "androidx.compose.ui:ui-text-android:$compose_version" implementation "androidx.compose.ui:ui-text-android:$compose_version"
implementation "androidx.compose.ui:ui-unit:$compose_version" implementation "androidx.compose.ui:ui-unit:$compose_version"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07" implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
implementation "androidx.ui:ui-tooling:$compose_version" implementation "androidx.ui:ui-tooling:$compose_version"
implementation 'com.google.android.material:material:1.3.0-alpha02' implementation 'com.google.android.material:material:1.3.0-alpha02'
implementation "com.google.dagger:hilt-android:$hilt_version" implementation "com.google.dagger:hilt-android:$hilt_version"

View file

@ -6,6 +6,7 @@ buildscript {
dagger_version = '2.29.1' dagger_version = '2.29.1'
hilt_version = '2.29-alpha' hilt_version = '2.29-alpha'
kotlin_version = '1.4.10' kotlin_version = '1.4.10'
lifecycle_version = '2.3.0-alpha07'
moshi_version = '1.9.3' moshi_version = '1.9.3'
room_version = '2.3.0-alpha02' room_version = '2.3.0-alpha02'
} }