apply plugin: 'com.android.library' ext { PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs' PUBLISH_ARTIFACT_ID = 'core' PUBLISH_VERSION = '0.8.6.0' SUPPORT_LIBRARY_VERSION = '24.0.0' BUILD_TOOLS = "24.0.0" TARGET_SDK = 24 } android { compileSdkVersion TARGET_SDK buildToolsVersion BUILD_TOOLS defaultConfig { minSdkVersion 8 targetSdkVersion TARGET_SDK versionCode 1 versionName PUBLISH_VERSION consumerProguardFiles 'progress-proguard.txt' } lintOptions { abortOnError false checkReleaseBuilds false } } dependencies { compile "com.android.support:support-v4:${SUPPORT_LIBRARY_VERSION}" compile "com.android.support:appcompat-v7:${SUPPORT_LIBRARY_VERSION}" compile "com.android.support:recyclerview-v7:${SUPPORT_LIBRARY_VERSION}" compile "com.android.support:support-annotations:${SUPPORT_LIBRARY_VERSION}" compile "me.zhanghai.android.materialprogressbar:library:1.1.6" } apply from: 'https://raw.githubusercontent.com/afollestad/aidanfollestad.com/master/android-lib-release.gradle'