Created
June 12, 2019 17:12
-
-
Save DanishAmjad12/a5f9ebce0f1b815990714ec411b9e5b6 to your computer and use it in GitHub Desktop.
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 room_version = "2.1.0-rc01" | |
implementation "androidx.room:room-runtime:$room_version" | |
annotationProcessor "androidx.room:room-compiler:$room_version" // For Kotlin use kapt instead of annotationProcessor | |
// optional - Kotlin Extensions and Coroutines support for Room | |
implementation "androidx.room:room-ktx:$room_version" | |
// optional - RxJava support for Room | |
implementation "androidx.room:room-rxjava2:$room_version" | |
// optional - Guava support for Room, including Optional and ListenableFuture | |
implementation "androidx.room:room-guava:$room_version" | |
// Test helpers | |
testImplementation "androidx.room:room-testing:$room_version" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment