diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-02 22:38:15 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-02 22:38:15 -0600 |
commit | 07fd2f2f477e7fe3a21512ebc0f55bf23c8d4ceb (patch) | |
tree | 99b43838373fc35a332e3c8977bba2e3b881dd28 /app/build.gradle | |
parent | 1bf7224e155380ec3921cc62f36eb4f5a47d3b80 (diff) | |
download | wiimmfi-watcher-07fd2f2f477e7fe3a21512ebc0f55bf23c8d4ceb.tar wiimmfi-watcher-07fd2f2f477e7fe3a21512ebc0f55bf23c8d4ceb.tar.gz wiimmfi-watcher-07fd2f2f477e7fe3a21512ebc0f55bf23c8d4ceb.tar.bz2 |
kindof understand mvvm
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index a525737..ecfb534 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -38,4 +38,23 @@ dependencies { testImplementation 'junit:junit:4.+' androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' + dependencies { + def room_version = "2.3.0" + + implementation "androidx.room:room-runtime:$room_version" + annotationProcessor "androidx.room:room-compiler:$room_version" + + // optional - RxJava2 support for Room + implementation "androidx.room:room-rxjava2:$room_version" + + // optional - RxJava3 support for Room + implementation "androidx.room:room-rxjava3:$room_version" + + // optional - Guava support for Room, including Optional and ListenableFuture + implementation "androidx.room:room-guava:$room_version" + + // optional - Test helpers + testImplementation "androidx.room:room-testing:$room_version" + } + }
\ No newline at end of file |