123456789101112131415161718192021222324252627282930313233 |
- apply plugin: 'com.android.library'
- ext {
- PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs'
- PUBLISH_ARTIFACT_ID = 'commons'
- PUBLISH_VERSION = '0.9.0.2'
- SUPPORT_LIBRARY_VERSION = '24.2.1'
- BUILD_TOOLS = "24.0.2"
- TARGET_SDK = 24
- }
- android {
- compileSdkVersion TARGET_SDK
- buildToolsVersion BUILD_TOOLS
- defaultConfig {
- minSdkVersion 9
- targetSdkVersion TARGET_SDK
- versionCode 1
- versionName PUBLISH_VERSION
- }
- lintOptions {
- abortOnError false
- checkReleaseBuilds false
- }
- }
- dependencies {
- compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
- compile project(':core')
- }
- apply from: 'https://raw.githubusercontent.com/afollestad/aidanfollestad.com/master/android-lib-release.gradle'
|