1
0
mirror of https://github.com/dzeiocom/OpenHealth.git synced 2025-04-22 10:52:13 +00:00

misc: updated deps
Some checks failed
build

This commit is contained in:
Florian Bouillon 2023-03-21 13:14:42 +01:00
parent 6802f64c94
commit 371706a5bd
Signed by: Florian Bouillon
GPG Key ID: E05B3A94178D3A7C
2 changed files with 16 additions and 11 deletions

View File

@ -16,6 +16,9 @@ plugins {
// OSS Licenses // OSS Licenses
id("com.google.android.gms.oss-licenses-plugin") id("com.google.android.gms.oss-licenses-plugin")
// KSP
id("com.google.devtools.ksp")
// keep at bottom // keep at bottom
kotlin("kapt") kotlin("kapt")
} }
@ -98,12 +101,6 @@ android {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
kapt {
arguments {
arg("room.schemaLocation", "$projectDir/schemas")
}
}
buildConfigField( buildConfigField(
"String[]", "String[]",
"LOCALES", "LOCALES",
@ -165,6 +162,11 @@ android {
kapt { kapt {
correctErrorTypes = true correctErrorTypes = true
useBuildCache = true
}
ksp {
arg("room.schemaLocation", "$projectDir/schemas")
} }
dependencies { dependencies {
@ -172,7 +174,7 @@ dependencies {
implementation("com.dzeio:charts:0.1.7") implementation("com.dzeio:charts:0.1.7")
// Dzeio Crash Handler // Dzeio Crash Handler
implementation("com.dzeio:crashhandler:1.0.1") implementation("com.dzeio:crashhandler:1.0.2")
// Core dependencies // Core dependencies
implementation("androidx.core:core-ktx:1.9.0") implementation("androidx.core:core-ktx:1.9.0")
@ -180,8 +182,8 @@ dependencies {
implementation("javax.inject:javax.inject:1") implementation("javax.inject:javax.inject:1")
implementation("com.google.android.material:material:1.9.0-alpha02") implementation("com.google.android.material:material:1.9.0-alpha02")
implementation("androidx.constraintlayout:constraintlayout:2.1.4") implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.5.1") implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.6.0")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1") implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.0")
// Coroutines // Coroutines
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
@ -211,11 +213,11 @@ dependencies {
// Hilt // Hilt
implementation("com.google.dagger:hilt-android:2.44.2") implementation("com.google.dagger:hilt-android:2.44.2")
kapt("com.google.dagger:hilt-compiler:2.44.2") kapt("com.google.dagger:hilt-compiler:2.45")
// ROOM // ROOM
implementation("androidx.room:room-runtime:2.5.0") implementation("androidx.room:room-runtime:2.5.0")
kapt("androidx.room:room-compiler:2.5.0") ksp("androidx.room:room-compiler:2.5.0")
implementation("androidx.room:room-ktx:2.5.0") implementation("androidx.room:room-ktx:2.5.0")
testImplementation("androidx.room:room-testing:2.5.0") testImplementation("androidx.room:room-testing:2.5.0")

View File

@ -24,6 +24,9 @@ plugins {
// Hilt // Hilt
id("com.google.dagger.hilt.android") version "2.45" apply false id("com.google.dagger.hilt.android") version "2.45" apply false
// KSP
id("com.google.devtools.ksp") version "1.8.10-1.0.9" apply false
} }
// Cleanup the build directories // Cleanup the build directories