build.gradle 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. apply plugin: 'com.android.library'
  2. ext {
  3. PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs'
  4. PUBLISH_ARTIFACT_ID = 'core'
  5. PUBLISH_VERSION = '0.8.5.9'
  6. SUPPORT_LIBRARY_VERSION = '24.0.0'
  7. }
  8. android {
  9. compileSdkVersion 24
  10. buildToolsVersion "24.0.0"
  11. defaultConfig {
  12. minSdkVersion 8
  13. targetSdkVersion 24
  14. versionCode 1
  15. versionName "${PUBLISH_VERSION}"
  16. consumerProguardFiles 'progress-proguard.txt'
  17. }
  18. lintOptions {
  19. abortOnError false
  20. checkReleaseBuilds false
  21. }
  22. }
  23. dependencies {
  24. compile "com.android.support:support-v4:${SUPPORT_LIBRARY_VERSION}"
  25. compile "com.android.support:appcompat-v7:${SUPPORT_LIBRARY_VERSION}"
  26. compile "com.android.support:recyclerview-v7:${SUPPORT_LIBRARY_VERSION}"
  27. compile "com.android.support:support-annotations:${SUPPORT_LIBRARY_VERSION}"
  28. compile "me.zhanghai.android.materialprogressbar:library:1.1.6"
  29. }
  30. apply from: 'https://raw.githubusercontent.com/afollestad/aidanfollestad.com/master/android-release-aar.gradle'