mirror of
https://github.com/twofas/2fas-android.git
synced 2024-11-26 04:09:51 +01:00
3488c3bc3d
wip
29 lines
688 B
Plaintext
29 lines
688 B
Plaintext
@Suppress("DSL_SCOPE_VIOLATION")
|
|
plugins {
|
|
alias(libs.plugins.twofasAndroidLibrary)
|
|
alias(libs.plugins.kotlinKapt)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.twofasapp.persistence"
|
|
|
|
kapt {
|
|
arguments {
|
|
arg("room.schemaLocation", "$projectDir/schemas")
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:di"))
|
|
implementation(project(":prefs"))
|
|
|
|
implementation(project(":parsers"))
|
|
implementation(project(":data:notifications"))
|
|
implementation(project(":data:services"))
|
|
implementation(project(":data:browserext"))
|
|
implementation(project(":core:common"))
|
|
|
|
implementation(libs.bundles.room)
|
|
kapt(libs.roomCompiler)
|
|
} |