apply plugin: 'com.android.library' ext { PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs' PUBLISH_ARTIFACT_ID = 'commons' PUBLISH_VERSION = '0.8.6.2' SUPPORT_LIBRARY_VERSION = '24.1.1' 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 } lintOptions { abortOnError false checkReleaseBuilds false } } dependencies { compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION" // compile "com.afollestad.material-dialogs:core:${PUBLISH_VERSION}" compile project(':core') } apply from: 'https://raw.githubusercontent.com/afollestad/aidanfollestad.com/master/android-lib-release.gradle'