build.gradle 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. buildToolsVersion "26.0.2"
  5. defaultConfig {
  6. applicationId "com.sheep.jiuyan.samllsheep"
  7. minSdkVersion 21
  8. targetSdkVersion 26
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. repositories {
  21. flatDir {
  22. dirs 'libs'
  23. }
  24. }
  25. dependencies {
  26. /* compile fileTree(dir: 'libs', include: ['*.jar'])
  27. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  28. exclude group: 'com.android.support', module: 'support-annotations'
  29. })*/
  30. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  31. testCompile 'junit:junit:4.12'
  32. compile 'com.shark:screencapture:1.0.0'
  33. compile 'com.google.code.gson:gson:2.7'
  34. compile 'com.jcodecraeer:xrecyclerview:1.5.2'
  35. compile 'com.github.bumptech.glide:glide:3.7.0'
  36. compile 'com.squareup.okhttp3:okhttp:3.9.1'
  37. compile 'org.greenrobot:eventbus:3.1.1'
  38. compile 'com.zhy:base-adapter:3.0.3'
  39. compile 'com.liulishuo.filedownloader:library:1.6.9'
  40. compile 'com.tencent.bugly:crashreport_upgrade:latest.release'
  41. compile 'com.tencent.mm.opensdk:wechat-sdk-android-with-mta:+'
  42. compile(name: 'utils', ext: 'aar')
  43. debugCompile 'com.readystatesoftware.chuck:library:1.1.0'
  44. compile 'de.hdodenhof:circleimageview:2.2.0'
  45. releaseCompile 'com.readystatesoftware.chuck:library-no-op:1.1.0'
  46. compile 'org.xutils:xutils:3.5.0'
  47. compile 'com.mylhyl:acp:1.1.7'
  48. compile 'cn.yipianfengye.android:zxing-library:2.2'
  49. }