36 lines
748 B
Kotlin
36 lines
748 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
id("kotlin-android")
|
|
id("kotlin-kapt")
|
|
id("dagger.hilt.android.plugin")
|
|
}
|
|
|
|
android {
|
|
compileSdk = libs.versions.compileSdk.get().toInt()
|
|
|
|
defaultConfig {
|
|
minSdk = libs.versions.minSdk.get().toInt()
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "11"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(libs.timber)
|
|
implementation(project(":translate"))
|
|
|
|
implementation(platform(libs.firebase.bom))
|
|
implementation(libs.firebase.crashlytics)
|
|
implementation(libs.firebase.analytics)
|
|
|
|
implementation(libs.hilt.library)
|
|
kapt(libs.hilt.compiler)
|
|
}
|