Created
June 1, 2020 12:20
-
-
Save lomza/44a3421f09a23133dbeed8540594cd5b to your computer and use it in GitHub Desktop.
build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
def lifecycle_version = "2.2.0" | |
def room_version = "2.2.5" | |
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | |
implementation 'androidx.appcompat:appcompat:1.3.0-alpha01' | |
implementation 'com.google.android.material:material:1.1.0' | |
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | |
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" | |
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version" | |
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version" | |
implementation "androidx.room:room-runtime:$room_version" | |
implementation "androidx.room:room-ktx:$room_version" | |
kapt "androidx.room:room-compiler:$room_version" | |
implementation "com.github.doyaaaaaken:kotlin-csv-jvm:0.9.0" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment