apply plugin: 'com.android.library' apply plugin: 'com.novoda.bintray-release' android { compileSdkVersion COMPILE_SDK_VERSION as int buildToolsVersion BUILD_TOOLS_VERSION defaultConfig { minSdkVersion MIN_SDK_VERSION as int targetSdkVersion TARGET_SDK_VERSION as int versionCode "git rev-list origin/master --count".execute().text.toInteger() versionName VERSION_NAME // Warning:Renderscript support mode is not currently supported with renderscript target 21+ renderscriptTargetApi RENDERSCRIPT_TARGET_API as int renderscriptSupportModeEnabled true } } dependencies { compile "com.github.bumptech.glide:glide:${GLIDE_VERSION}" provided "jp.co.cyberagent.android.gpuimage:gpuimage-library:${GPUIMAGE_VERSION}" } publish { userOrg = POM_DEVELOPER_ID groupId = GROUP artifactId = ARTIFACT_ID publishVersion = VERSION_NAME desc = POM_DESCRIPTION website = POM_URL }