apply plugin: 'com.android.library' apply plugin: 'com.novoda.bintray-release' android { compileSdkVersion 23 buildToolsVersion "23.0.0" defaultConfig { minSdkVersion 8 targetSdkVersion 23 versionCode 1 versionName "0.8.0.0" } lintOptions { abortOnError false } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:23.0.1' // compile 'com.android.support:preference-v7:23.0.1' compile project(':core') } publish { userOrg = 'drummer-aidan' groupId = 'com.afollestad' artifactId = 'material-dialogs-commons' version = '0.8.0.0' description = 'A library for implementing Material design styled dialogs across all versions of Android.' website = 'https://github.com/afollestad/material-dialogs' issueTracker = "${website}/issues" repository = "${website}.git" }