mirror of
https://github.com/dzeiocom/OpenHealth.git
synced 2025-07-01 09:09:18 +00:00
misc: Comments and cleanup
This commit is contained in:
@ -1,8 +1,13 @@
|
||||
import java.util.Properties
|
||||
|
||||
plugins {
|
||||
// Android Application?
|
||||
id("com.android.application")
|
||||
|
||||
// Support for kotlin in Android
|
||||
kotlin("android")
|
||||
|
||||
// Data Injection
|
||||
id("dagger.hilt.android.plugin")
|
||||
|
||||
// Safe Navigation
|
||||
@ -15,12 +20,16 @@ plugins {
|
||||
kotlin("kapt")
|
||||
}
|
||||
|
||||
// The application ID
|
||||
val appID = "com.dzeio.openhealth"
|
||||
|
||||
// Languages
|
||||
// the application supported languages
|
||||
val locales = listOf("en", "fr")
|
||||
|
||||
// minimum application required SDK version to run
|
||||
val sdkMin = 21
|
||||
|
||||
// target SDK version
|
||||
val sdkTarget = 33
|
||||
|
||||
android {
|
||||
@ -122,8 +131,8 @@ android {
|
||||
dependencies {
|
||||
// Dzeio Charts
|
||||
implementation(project(":charts"))
|
||||
// implementation(project(":CrashHandler"))
|
||||
|
||||
// Dzeio Crash Handler
|
||||
implementation("com.dzeio:crashhandler:1.0.1")
|
||||
|
||||
// Core dependencies
|
||||
@ -135,8 +144,6 @@ dependencies {
|
||||
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.5.1")
|
||||
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1")
|
||||
|
||||
// implementation("com.github.Aviortheking:crashhandler:0.2.3")
|
||||
|
||||
// Coroutines
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
|
||||
|
||||
@ -154,34 +161,21 @@ dependencies {
|
||||
implementation("androidx.paging:paging-runtime:3.1.1")
|
||||
implementation("androidx.paging:paging-runtime-ktx:3.1.1")
|
||||
|
||||
|
||||
// Services
|
||||
implementation("androidx.work:work-runtime-ktx:2.7.1")
|
||||
|
||||
// Tests
|
||||
testImplementation("junit:junit:4.13.2")
|
||||
androidTestImplementation("androidx.test.ext:junit:1.1.4")
|
||||
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
|
||||
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
||||
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
||||
|
||||
// Graph
|
||||
implementation("com.github.PhilJay:MPAndroidChart:v3.1.0")
|
||||
|
||||
// Graphs test 2
|
||||
implementation("com.github.HackPlan:AndroidCharts:1.0.4")
|
||||
|
||||
// Hilt
|
||||
implementation("com.google.dagger:hilt-android:2.44.2")
|
||||
kapt("com.google.dagger:hilt-compiler:2.44.2")
|
||||
|
||||
// Google Fit
|
||||
// implementation("com.google.android.gms:play-services-fitness:21.1.0")
|
||||
// implementation("com.google.android.gms:play-services-auth:20.4.0")
|
||||
// implementation("androidx.health.connect:connect-client:1.0.0-alpha08")
|
||||
|
||||
// Samsung Health
|
||||
// implementation(files("libs/samsung-health-data-1.5.0.aar"))
|
||||
// implementation("com.google.code.gson:gson:2.9.1")
|
||||
|
||||
// ROOM
|
||||
implementation("androidx.room:room-runtime:2.4.3")
|
||||
kapt("androidx.room:room-compiler:2.4.3")
|
||||
@ -196,7 +190,7 @@ dependencies {
|
||||
// OSS Licenses
|
||||
implementation("com.google.android.gms:play-services-oss-licenses:17.0.0")
|
||||
|
||||
// Open Food Fact
|
||||
// Retrofit (Open Food Fact)
|
||||
implementation("com.squareup.retrofit2:retrofit:2.9.0")
|
||||
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
|
||||
implementation("com.squareup.okhttp3:logging-interceptor:4.9.1")
|
||||
|
Reference in New Issue
Block a user