android_multiviewwer/library/build.gradle.kts
lunaticbum 4b51b9807a ...
2024-11-12 14:25:30 +09:00

45 lines
1023 B
Plaintext

plugins {
id ("com.android.library")
id ("kotlin-android")
}
android {
namespace = "kr.lunaticbum.awesomewebview"
compileSdk = 34
defaultConfig {
// applicationId = "kr.lunaticbum.awesomewebview"
minSdk = 26
targetSdk = 34
// versionCode = 1
// versionName = "0.0.1"
}
buildFeatures {
viewBinding = true
dataBinding = true
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
// implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation ("androidx.annotation:annotation:1.9.1")
implementation ("androidx.appcompat:appcompat:1.7.0")
implementation ("com.google.android.material:material:1.12.0")
// implementation ("com.nineoldandroids:library:2.4.0")
implementation ("androidx.core:core-ktx:1.13.1")
implementation(project(":utils"))
}