mirror of
https://github.com/wasabeef/glide-transformations.git
synced 2025-06-07 14:54:05 +08:00
* refactor: clean code * update: gpuimage * update: min sdk to 21 * refactor: remove support rs * update: gradle plugin * style: fix xml format * update: update gradle properties * release 4.2.1 * update: samples * update: sample * update:changelog * remove comments * change release version
28 lines
627 B
Groovy
28 lines
627 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
kotlin_version = '1.3.72'
|
|
glide_version = '4.11.0'
|
|
gpuimage_version = '2.1.0'
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.2.0-alpha12'
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|