2025-01-25 23:35:32 +01:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.android.application)
|
|
|
|
alias(libs.plugins.kotlin.android)
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "de.jrpie.android.search"
|
|
|
|
compileSdk = 35
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "de.jrpie.android.search"
|
|
|
|
minSdk = 21
|
|
|
|
targetSdk = 35
|
|
|
|
versionCode = 1
|
2025-01-25 23:39:37 +01:00
|
|
|
versionName = "0.0.1"
|
2025-01-25 23:35:32 +01:00
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
isMinifyEnabled = false
|
|
|
|
proguardFiles(
|
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
|
"proguard-rules.pro"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "11"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
implementation(libs.androidx.appcompat)
|
|
|
|
implementation(libs.material)
|
|
|
|
implementation(libs.androidx.activity)
|
|
|
|
implementation(libs.androidx.constraintlayout)
|
|
|
|
testImplementation(libs.junit)
|
|
|
|
androidTestImplementation(libs.androidx.junit)
|
|
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
|
|
|
}
|