1
0

build.gradle 1005 B

123456789101112131415161718192021222324252627282930313233343536
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.novoda.bintray-release'
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.0"
  6. defaultConfig {
  7. minSdkVersion 8
  8. targetSdkVersion 23
  9. versionCode 1
  10. versionName "0.8.0.0"
  11. }
  12. lintOptions {
  13. abortOnError false
  14. }
  15. }
  16. dependencies {
  17. compile fileTree(dir: 'libs', include: ['*.jar'])
  18. compile 'com.android.support:support-v4:23.0.1'
  19. compile 'com.android.support:appcompat-v7:23.0.1'
  20. compile 'com.android.support:recyclerview-v7:23.0.1'
  21. compile 'com.android.support:support-annotations:23.0.1'
  22. }
  23. publish {
  24. userOrg = 'drummer-aidan'
  25. groupId = 'com.afollestad'
  26. artifactId = 'material-dialogs'
  27. version = '0.8.0.0'
  28. description = 'A library for implementing Material design styled dialogs across all versions of Android.'
  29. website = 'https://github.com/afollestad/material-dialogs'
  30. issueTracker = "${website}/issues"
  31. repository = "${website}.git"
  32. }