android_multiviewwer/library/build.gradle.kts

49 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-11-12 14:25:30 +09:00
plugins {
id ("com.android.library")
id ("kotlin-android")
}
android {
namespace = "kr.lunaticbum.awesomewebview"
2024-11-13 17:41:40 +09:00
compileSdk = 35
2024-11-12 14:25:30 +09:00
defaultConfig {
// applicationId = "kr.lunaticbum.awesomewebview"
minSdk = 26
2024-11-13 17:41:40 +09:00
// targetSdk = 34
2024-11-12 14:25:30 +09:00
// 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 {
2024-11-27 17:04:51 +09:00
implementation( "com.github.bumptech.glide:glide:4.11.0")
annotationProcessor ("com.github.bumptech.glide:compiler:4.11.0")
2024-11-12 14:25:30 +09:00
// implementation fileTree(dir: 'libs', include: ['*.jar'])
2024-12-24 18:12:54 +09:00
implementation ("com.airbnb.android:lottie:5.2.0")
2024-11-12 14:25:30 +09:00
implementation ("androidx.annotation:annotation:1.9.1")
implementation ("androidx.appcompat:appcompat:1.7.0")
implementation ("com.google.android.material:material:1.12.0")
2024-12-20 18:06:54 +09:00
// implementation ("org.apache.tika:tika-parsers:1.24")
2024-11-12 14:25:30 +09:00
// implementation ("com.nineoldandroids:library:2.4.0")
2024-11-13 17:41:40 +09:00
implementation ("androidx.core:core-ktx:1.15.0")
2024-11-12 14:25:30 +09:00
implementation(project(":utils"))
}