44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
|
plugins {
|
||
|
alias(libs.plugins.androidLibrary)
|
||
|
alias(libs.plugins.kotlin.android)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.zaneschepke.logcatter"
|
||
|
compileSdk = 34
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk = 26
|
||
|
|
||
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
consumerProguardFiles("consumer-rules.pro")
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
isMinifyEnabled = false
|
||
|
proguardFiles(
|
||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||
|
"proguard-rules.pro"
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
kotlinOptions {
|
||
|
jvmTarget = "1.8"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
|
||
|
implementation(libs.androidx.core.ktx)
|
||
|
implementation(libs.androidx.appcompat)
|
||
|
implementation(libs.material)
|
||
|
testImplementation(libs.junit)
|
||
|
androidTestImplementation(libs.androidx.junit)
|
||
|
androidTestImplementation(libs.androidx.espresso.core)
|
||
|
}
|