1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-06-10 00:24:36 +08:00
2018-11-20 10:52:45 +09:00

44 lines
1.5 KiB
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion COMPILE_SDK_VERSION as int
defaultConfig {
minSdkVersion MIN_SDK_VERSION as int
targetSdkVersion TARGET_SDK_VERSION as int
renderscriptTargetApi TARGET_SDK_VERSION as int
renderscriptSupportModeEnabled true
consumerProguardFiles 'proguard-rules.txt'
}
}
dependencies {
implementation "com.github.bumptech.glide:glide:$glide_version"
annotationProcessor "com.github.bumptech.glide:compiler:$glide_version"
compileOnly "jp.co.cyberagent.android:gpuimage:$gpuimage_version"
}
ext {
bintrayRepo = 'maven'
bintrayName = 'glide-transformations'
bintrayUserOrg = 'wasabeef'
publishedGroupId = 'jp.wasabeef'
libraryName = 'glide-transformations'
artifact = 'glide-transformations'
libraryDescription = 'Which provides simple Tranformations to Glide'
siteUrl = 'https://github.com/wasabeef/glide-transformations'
gitUrl = 'https://github.com/wasabeef/glide-transformations.git'
issueUrl = 'https://github.com/wasabeef/glide-transformations/issues'
libraryVersion = VERSION_NAME
developerId = 'wasabeef'
developerName = 'Wasabeef'
developerEmail = 'dadadada.chop@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/bintray-v1.gradle'
apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/install-v1.gradle'