1
0
mirror of https://github.com/dzeiocom/OpenHealth.git synced 2025-06-22 04:59:18 +00:00
This commit is contained in:
2021-12-10 16:43:11 +01:00
parent a164e23b2d
commit 57beb426fb
29 changed files with 875 additions and 121 deletions

View File

@ -1,6 +1,7 @@
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'kotlin-kapt'
}
android {
@ -51,4 +52,30 @@ dependencies {
// Google Fit
implementation "com.google.android.gms:play-services-fitness:21.0.0"
implementation "com.google.android.gms:play-services-auth:20.0.0"
// Samsung Health
implementation files('libs/samsung-health-data-1.5.0.aar')
// ROOM
def room_version = "2.3.0"
implementation "androidx.room:room-runtime:$room_version"
kapt "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"
// optional - Paging 3 Integration
implementation "androidx.room:room-paging:2.4.0-rc01"
}