48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
plugins {
|
|
id ("com.android.library")
|
|
id ("kotlin-android")
|
|
}
|
|
|
|
android {
|
|
namespace = "kr.lunaticbum.awesomewebview"
|
|
compileSdk = 35
|
|
|
|
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( "com.github.bumptech.glide:glide:4.11.0")
|
|
annotationProcessor ("com.github.bumptech.glide:compiler:4.11.0")
|
|
// 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 ("org.apache.tika:tika-parsers:1.24")
|
|
// implementation ("com.nineoldandroids:library:2.4.0")
|
|
implementation ("androidx.core:core-ktx:1.15.0")
|
|
implementation(project(":utils"))
|
|
} |