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 } } 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'