33 lines
789 B
Kotlin
33 lines
789 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.lowe.resource"
|
|
compileSdk = Version.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = Version.minSdk
|
|
targetSdk = Version.targetSdk
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_11.toString()
|
|
}
|
|
compileOptions {
|
|
targetCompatibility(JavaVersion.VERSION_11)
|
|
sourceCompatibility(JavaVersion.VERSION_11)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(Deps.material)
|
|
|
|
testImplementation(Deps.testJunit)
|
|
androidTestImplementation(Deps.androidTestJunit)
|
|
androidTestImplementation(Deps.androidTestEspresso)
|
|
} |