build.gradle 776 B

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 26
  4. buildToolsVersion '26.0.2'
  5. defaultConfig {
  6. minSdkVersion 14
  7. targetSdkVersion 26
  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. testCompile 'junit:junit:4.12'
  21. compile 'com.android.support:support-v4:26.1.0'
  22. compile 'com.nineoldandroids:library:2.4.0'
  23. provided 'com.android.support:recyclerview-v7:26.1.0'
  24. compile 'com.github.bumptech.glide:glide:3.6.1'
  25. compile 'cn.finalteam:galleryfinal:1.4.8.7'
  26. }