43 lines
960 B
Kotlin
43 lines
960 B
Kotlin
|
|
plugins {
|
||
|
|
id("com.android.library")
|
||
|
|
id("org.jetbrains.kotlin.android")
|
||
|
|
id("kotlin-kapt")
|
||
|
|
id("dagger.hilt.android.plugin")
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "com.smoa.core.certificates"
|
||
|
|
compileSdk = AppConfig.compileSdk
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdk = AppConfig.minSdk
|
||
|
|
}
|
||
|
|
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
||
|
|
targetCompatibility = JavaVersion.VERSION_17
|
||
|
|
}
|
||
|
|
|
||
|
|
kotlinOptions {
|
||
|
|
jvmTarget = "17"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation(project(":core:common"))
|
||
|
|
implementation(project(":core:security"))
|
||
|
|
|
||
|
|
implementation(Dependencies.androidxCoreKtx)
|
||
|
|
|
||
|
|
// Cryptography
|
||
|
|
implementation(Dependencies.bouncycastle)
|
||
|
|
implementation(Dependencies.bouncycastlePkix)
|
||
|
|
|
||
|
|
implementation(Dependencies.hiltAndroid)
|
||
|
|
kapt(Dependencies.hiltAndroidCompiler)
|
||
|
|
|
||
|
|
implementation(Dependencies.coroutinesCore)
|
||
|
|
implementation(Dependencies.coroutinesAndroid)
|
||
|
|
}
|
||
|
|
|