build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'android-apt'
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion '25.0.0'
  6. defaultConfig {
  7. applicationId "com.dashoo.yunguan369"
  8. minSdkVersion 15
  9. targetSdkVersion 23
  10. versionCode 1
  11. versionName "1.0"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. configurations.all {
  20. resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.1'
  21. }
  22. useLibrary 'org.apache.http.legacy'
  23. }
  24. dependencies {
  25. compile fileTree(dir: 'libs', include: ['*.jar'])
  26. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  27. exclude group: 'com.android.support', module: 'support-annotations'
  28. })
  29. compile 'com.github.limedroid:XDroidMvp:v1.5.0'
  30. compile 'com.wang.avi:library:1.0.2'
  31. apt 'com.jakewharton:butterknife-compiler:8.4.0'
  32. testCompile 'junit:junit:4.12'
  33. compile 'com.pgyersdk:sdk:2.4.0'
  34. compile 'com.google.zxing:core:3.0.0'
  35. }