build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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.9.2.3'
  6. SUPPORT_LIBRARY_VERSION = '25.1.0'
  7. BUILD_TOOLS = "25.0.1"
  8. TARGET_SDK = 25
  9. }
  10. android {
  11. compileSdkVersion TARGET_SDK
  12. buildToolsVersion BUILD_TOOLS
  13. defaultConfig {
  14. minSdkVersion 13
  15. targetSdkVersion TARGET_SDK
  16. versionCode 1
  17. versionName PUBLISH_VERSION
  18. consumerProguardFiles 'progress-proguard.txt'
  19. }
  20. lintOptions {
  21. abortOnError false
  22. checkReleaseBuilds false
  23. }
  24. }
  25. dependencies {
  26. compile "com.android.support:support-v13:$SUPPORT_LIBRARY_VERSION"
  27. compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
  28. compile "com.android.support:recyclerview-v7:$SUPPORT_LIBRARY_VERSION"
  29. compile "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION"
  30. compile "me.zhanghai.android.materialprogressbar:library:1.3.0"
  31. }
  32. apply from: 'https://raw.githubusercontent.com/afollestad/aidanfollestad.com/master/android-lib-release.gradle'