build.gradle 796 B

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.library'
  2. ext {
  3. PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs'
  4. PUBLISH_ARTIFACT_ID = 'commons'
  5. PUBLISH_VERSION = '0.9.0.1'
  6. SUPPORT_LIBRARY_VERSION = '24.1.1'
  7. BUILD_TOOLS = "24.0.0"
  8. TARGET_SDK = 24
  9. }
  10. android {
  11. compileSdkVersion TARGET_SDK
  12. buildToolsVersion BUILD_TOOLS
  13. defaultConfig {
  14. minSdkVersion 8
  15. targetSdkVersion TARGET_SDK
  16. versionCode 1
  17. versionName PUBLISH_VERSION
  18. }
  19. lintOptions {
  20. abortOnError false
  21. checkReleaseBuilds false
  22. }
  23. }
  24. dependencies {
  25. compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
  26. compile project(':core')
  27. }
  28. apply from: 'https://raw.githubusercontent.com/afollestad/aidanfollestad.com/master/android-lib-release.gradle'