Setup viewmodel

This commit is contained in:
2020-03-09 18:17:39 -04:00
parent 12e39969c0
commit 4e6d3bc678
7 changed files with 116 additions and 78 deletions

View File

@@ -45,17 +45,20 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.jakewharton.timber:timber:4.7.1'
// KTX
implementation 'androidx.core:core-ktx:1.0.1'
implementation 'androidx.core:core-ktx:1.2.0'
// Navigation
implementation "android.arch.navigation:navigation-fragment-ktx:1.0.0-rc02"
implementation "android.arch.navigation:navigation-ui-ktx:1.0.0-rc02"
implementation "android.arch.navigation:navigation-fragment-ktx:1.0.0"
implementation "android.arch.navigation:navigation-ui-ktx:1.0.0"
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
}