build.gradle 807 B

12345678910111213141516171819202122232425262728293031323334
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion "25.0.2"
  5. defaultConfig {
  6. minSdkVersion 15
  7. targetSdkVersion 22
  8. versionCode 1
  9. versionName "1.0"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. compile fileTree(dir: 'libs', include: ['*.jar'])
  20. compile 'com.github.zj565061763:animator:1.0.7'
  21. compile 'com.github.zj565061763:libcore:1.0.91'
  22. compile 'com.github.zj565061763:looper:1.0.5'
  23. compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.7'
  24. compile('com.zhy:percent-support-extends:1.1.1') {
  25. exclude module: 'appcompat-v7'
  26. }
  27. }