2024-11-12 14:25:30 +09:00
|
|
|
plugins {
|
|
|
|
|
id ("com.android.library")
|
|
|
|
|
id ("kotlin-android")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace = "kr.lunaticbum.helpers"
|
2024-11-13 17:41:40 +09:00
|
|
|
compileSdk = 35
|
2024-11-12 14:25:30 +09:00
|
|
|
defaultConfig {
|
|
|
|
|
minSdk = 26
|
2024-11-13 17:41:40 +09:00
|
|
|
// targetSdk = 34
|
2024-11-12 14:25:30 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
|
viewBinding = true
|
|
|
|
|
dataBinding = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation ("com.android.support:appcompat-v7:28.0.0")
|
|
|
|
|
implementation ("com.android.support:support-annotations:28.0.0")
|
|
|
|
|
implementation ("androidx.annotation:annotation-jvm:1.9.1")
|
2024-11-13 17:41:40 +09:00
|
|
|
implementation ("androidx.core:core-ktx:1.15.0")
|
2024-11-12 14:25:30 +09:00
|
|
|
}
|