mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
081b55f42c
commit_hash:e5a2e62dbc4976dad23a54fdc75394e70a901646
24 lines
490 B
Kotlin
24 lines
490 B
Kotlin
plugins {
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.kotlin.ksp)
|
|
}
|
|
|
|
apply(from = "../div-library.gradle")
|
|
apply(from = "../div-tests.gradle")
|
|
apply(from = "../publish-android.gradle")
|
|
|
|
android {
|
|
namespace = "com.yandex.divkit.glide"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":div"))
|
|
implementation(project(":div-core"))
|
|
|
|
implementation(libs.glide.core) {
|
|
exclude(group = "androidx.fragment", module = "fragment")
|
|
}
|
|
|
|
ksp(libs.glide.ksp)
|
|
}
|