Skip to content
Snippets Groups Projects
Commit e061a5a3 authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Networking module build.gradle

parent 4a3c8623
No related branches found
No related tags found
No related merge requests found
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
kotlin("android")
kotlin("kapt")
id("dagger.hilt.android.plugin")
}
android {
compileSdk = 32
compileSdk = Versions.COMPILE_SDK
defaultConfig {
minSdk = 21
targetSdk = 32
minSdk = Versions.MIN_SDK
targetSdk = Versions.TARGET_SDK
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
......@@ -32,12 +34,19 @@ android {
}
}
kapt {
correctErrorTypes = true
}
dependencies {
implementation(project(":depconstraints"))
implementation(project(":xxclient"))
implementation(project(":core:logging"))
implementation(Libs.Core.ANDROIDX_APPCOMPAT)
implementation(Libs.Core.CORE_KTX)
implementation(Libs.Core.CORE_COROUTINES)
implementation("androidx.core:core-ktx:1.7.0")
implementation("androidx.appcompat:appcompat:1.5.1")
implementation("com.google.android.material:material:1.6.1")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.3")
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
implementation(Libs.DI.HILT)
kapt(Libs.DI.HILT_KAPT)
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment