apply plugin: 'com.android.library' ext { PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs' PUBLISH_ARTIFACT_ID = 'core' PUBLISH_VERSION = '0.9.0.2' SUPPORT_LIBRARY_VERSION = '24.2.1' BUILD_TOOLS = "24.0.2" TARGET_SDK = 24 } android { compileSdkVersion TARGET_SDK buildToolsVersion BUILD_TOOLS defaultConfig { minSdkVersion 9 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.7" } apply from: 'https://raw.githubusercontent.com/afollestad/aidanfollestad.com/master/android-lib-release.gradle'