12345678910111213141516171819202122232425262728293031323334 |
- apply plugin: 'com.android.library'
- apply plugin: 'bintray-release'
- android {
- compileSdkVersion 21
- buildToolsVersion "21.1.2"
- defaultConfig {
- minSdkVersion 8
- targetSdkVersion 21
- versionCode 1
- versionName "0.4.7"
- }
- lintOptions {
- abortOnError false
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.android.support:appcompat-v7:21.+'
- compile 'com.android.support:support-annotations:21.+'
- }
- publish {
- userOrg = 'drummer-aidan'
- groupId = 'com.afollestad'
- artifactId = 'material-dialogs'
- version = '0.4.7'
- 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"
- }
|