42 lines
960 B
Groovy
42 lines
960 B
Groovy
|
plugins {
|
||
|
id 'com.android.library'
|
||
|
id 'org.jetbrains.kotlin.android'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace 'foundation.e.advancedprivacy.trackers.service'
|
||
|
compileSdkVersion buildConfig.compileSdk
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion buildConfig.minSdk
|
||
|
targetSdkVersion buildConfig.targetSdk
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_17
|
||
|
targetCompatibility JavaVersion.VERSION_17
|
||
|
}
|
||
|
kotlinOptions {
|
||
|
jvmTarget = '17'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(":core")
|
||
|
implementation project(":trackers")
|
||
|
implementation project(":ipscrambling")
|
||
|
|
||
|
implementation(
|
||
|
libs.androidx.core.ktx,
|
||
|
libs.bundles.koin,
|
||
|
libs.kotlinx.coroutines,
|
||
|
libs.timber,
|
||
|
)
|
||
|
}
|