plugins { id("com.android.library") id("org.jetbrains.kotlin.android") id("kotlin-kapt") id("dagger.hilt.android.plugin") } android { namespace = "com.smoa.core.auth" 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) implementation(Dependencies.androidxLifecycleRuntimeKtx) implementation(Dependencies.securityCrypto) implementation(Dependencies.biometric) implementation(Dependencies.coroutinesCore) implementation(Dependencies.coroutinesAndroid) implementation(Dependencies.hiltAndroid) kapt(Dependencies.hiltAndroidCompiler) // Testing testImplementation(Dependencies.junit) testImplementation(Dependencies.mockk) testImplementation(Dependencies.coroutinesTest) testImplementation(Dependencies.truth) }