1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-10-04 09:53:21 +08:00

chore(*): add settings for maven central (#192)

This commit is contained in:
Daichi Furiya
2021-02-12 19:38:00 +09:00
committed by GitHub
parent 8144929b63
commit 9a64b8a89d
6 changed files with 24 additions and 12 deletions

View File

@@ -29,13 +29,18 @@ android {
}
}
repositories {
// maven { url = "https://oss.sonatype.org/content/repositories/snapshots"}
}
dependencies {
implementation project(':transformations')
// implementation project(':transformations')
implementation 'jp.wasabeef:glide-transformations:4.3.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "com.github.bumptech.glide:glide:$glide_version"
kapt "com.github.bumptech.glide:compiler:$glide_version"
implementation "jp.co.cyberagent.android:gpuimage:$gpuimage_version"
implementation "androidx.appcompat:appcompat:1.3.0-alpha02"
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha05"
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation "androidx.appcompat:appcompat:1.3.0-beta01"
implementation "androidx.recyclerview:recyclerview:1.2.0-beta01"
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
}