0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 04:02:14 +02:00
thunderbird-android/backend/demo/build.gradle

20 lines
436 B
Groovy

plugins {
id 'java-library'
id 'kotlin'
alias(libs.plugins.ksp)
alias(libs.plugins.android.lint)
}
dependencies {
api project(":backend:api")
implementation libs.kotlinx.coroutines.core
implementation libs.moshi
ksp libs.moshi.kotlin.codegen
testImplementation project(":mail:testing")
testImplementation libs.junit
testImplementation libs.mockito.core
testImplementation libs.truth
}