build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion ANDROID_COMPILE_SDK_VERSION as int
  4. buildToolsVersion ANDROID_BUILD_TOOLS_VERSION
  5. defaultConfig {
  6. minSdkVersion ANDROID_MIN_SDK_VERSION as int
  7. targetSdkVersion ANDORID_TARGET_SDK_VERSION as int
  8. versionCode VERSION_CODE as int
  9. versionName VERSION_NAME
  10. }
  11. lintOptions {
  12. abortOnError false
  13. }
  14. dexOptions {
  15. preDexLibraries = false
  16. }
  17. buildTypes {
  18. release {
  19. minifyEnabled false
  20. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  21. }
  22. }
  23. buildToolsVersion ANDROID_BUILD_TOOLS_VERSION
  24. }
  25. dependencies {
  26. compile fileTree(include: ['*.jar'], dir: 'libs')
  27. compile 'com.android.support:appcompat-v7:23.4.0'
  28. compile 'com.android.support:support-v4:23.4.0'
  29. testCompile 'junit:junit:4.12'
  30. compile 'com.github.bumptech.glide:glide:3.5.2'
  31. compile 'jp.wasabeef:glide-transformations:2.0.2'
  32. compile 'com.nineoldandroids:library:2.4.0'
  33. compile 'cn.bingoogolapple:bga-banner:2.1.7@aar'
  34. // compile project(':sheep')
  35. }