build.gradle 831 B

12345678910111213141516171819202122232425262728
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. defaultConfig {
  5. applicationId "com.ynstkz.shitu.android"
  6. minSdkVersion 16
  7. targetSdkVersion 26
  8. versionCode 1
  9. versionName "1.0"
  10. javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. compile fileTree(dir: 'libs', include: ['*.jar'])
  21. compile project(':library')
  22. compile 'com.android.support:appcompat-v7:26.1.0'
  23. compile 'com.android.support:design:26.1.0'
  24. compile 'com.jakewharton:butterknife:7.0.1'
  25. compile 'com.github.bumptech.glide:glide:3.7.0'
  26. }