2024-02-05 21:50:43 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
2024-02-14 07:09:48 +01:00
|
|
|
id 'org.jetbrains.kotlin.android'
|
2024-02-05 21:50:43 +01:00
|
|
|
}
|
|
|
|
apply from: "../../common.gradle"
|
|
|
|
|
|
|
|
android {
|
2024-02-14 09:07:17 +01:00
|
|
|
namespace "ac.mdiq.podvinci.storage.database"
|
2024-02-05 21:50:43 +01:00
|
|
|
|
|
|
|
lint {
|
|
|
|
disable "StaticFieldLeak", "StringFormatCount", "StringFormatMatches", "StringFormatInvalid", "PluralsCandidate", "StringFormatTrivial"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':model')
|
2024-02-14 07:09:48 +01:00
|
|
|
implementation "androidx.core:core-ktx:$coreVersion"
|
2024-02-05 21:50:43 +01:00
|
|
|
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
|
|
|
}
|