build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. apply plugin: 'com.android.application'
  2. apply plugin: com.gradle.AresPlugin
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.1"
  6. defaultConfig {
  7. applicationId "com.uddream.gradle.plugin"
  8. minSdkVersion 19
  9. targetSdkVersion 23
  10. versionCode 1
  11. versionName "1.0"
  12. }
  13. packagingOptions {
  14. exclude 'META-INF/DEPENDENCIES.txt'
  15. exclude 'META-INF/LICENSE.txt'
  16. exclude 'META-INF/NOTICE.txt'
  17. exclude 'META-INF/NOTICE'
  18. exclude 'META-INF/LICENSE'
  19. exclude 'META-INF/DEPENDENCIES'
  20. exclude 'META-INF/notice.txt'
  21. exclude 'META-INF/license.txt'
  22. exclude 'META-INF/dependencies.txt'
  23. exclude 'META-INF/LGPL2.1'
  24. }
  25. lintOptions {
  26. abortOnError false
  27. }
  28. }
  29. dependencies {
  30. compile fileTree(include: ['*.jar'], dir: 'libs')
  31. compile 'com.android.support:design:23.0.1'
  32. compile 'com.android.support:appcompat-v7:23.0.1'
  33. compile 'com.android.support:cardview-v7:23.0.1'
  34. compile 'com.android.support:palette-v7:23.0.1'
  35. compile 'com.github.bumptech.glide:glide:3.7.0'
  36. compile project(':mylibrary')
  37. }