123456789101112131415161718192021222324252627282930313233343536 |
- 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.7.9.0"
- }
- lintOptions {
- abortOnError false
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.android.support:support-v4:23.0.0'
- compile 'com.android.support:appcompat-v7:23.0.0'
- compile 'com.android.support:recyclerview-v7:23.0.0'
- compile 'com.android.support:support-annotations:23.0.0'
- }
- //publish {
- // userOrg = 'drummer-aidan'
- // groupId = 'com.afollestad'
- // artifactId = 'material-dialogs'
- // version = '0.7.9.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"
- //}
|