build.gradle 942 B

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