1234567891011121314151617181920212223242526272829303132333435 |
- apply plugin: 'com.android.library'
- ext {
- PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs'
- PUBLISH_ARTIFACT_ID = 'core'
- PUBLISH_VERSION = '0.8.5.9'
- SUPPORT_LIBRARY_VERSION = '24.0.0'
- }
- android {
- compileSdkVersion 24
- buildToolsVersion "24.0.0"
- defaultConfig {
- minSdkVersion 8
- targetSdkVersion 24
- 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.6"
- }
- apply from: 'https://raw.githubusercontent.com/afollestad/aidanfollestad.com/master/android-release-aar.gradle'
|