build.gradle 878 B

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