build.gradle 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. // buildToolsVersion '27.0.2'
  5. defaultConfig {
  6. applicationId "com.sheep.jiuyan.samllsheep"
  7. minSdkVersion 18
  8. targetSdkVersion 26
  9. versionCode 100000
  10. versionName "1.0.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. ndk {
  13. abiFilters "armeabi-v7a", "x86"
  14. }
  15. }
  16. signingConfigs {
  17. config {
  18. keyAlias 'sheep'
  19. keyPassword 'zhaoyi2004'
  20. storeFile file('.././sign.jks')
  21. storePassword 'zhaoyi2004'
  22. }
  23. }
  24. buildTypes {
  25. release {
  26. minifyEnabled false
  27. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  28. signingConfig signingConfigs.config
  29. }
  30. debug {
  31. signingConfig signingConfigs.config
  32. }
  33. }
  34. buildToolsVersion '26.0.2'
  35. }
  36. repositories {
  37. flatDir {
  38. dirs 'libs'
  39. }
  40. google()
  41. }
  42. dependencies {
  43. // compile fileTree(include: ['*.jar'], dir: 'libs')
  44. // androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  45. // exclude group: 'com.android.support', module: 'support-annotations'
  46. // })
  47. compile 'com.android.support:appcompat-v7:26.0.2'
  48. compile 'com.android.support:support-v4:26.0.2'
  49. compile 'com.android.support:design:26.0.2'
  50. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  51. testCompile 'junit:junit:4.12'
  52. // compile 'com.shark:screencapture:1.0.0'
  53. compile 'com.google.code.gson:gson:2.7'
  54. compile 'com.jcodecraeer:xrecyclerview:1.5.2'
  55. compile 'com.github.bumptech.glide:glide:3.7.0'
  56. compile 'com.squareup.okhttp3:okhttp:3.9.1'
  57. compile 'org.greenrobot:eventbus:3.1.1'
  58. compile 'com.zhy:base-adapter:3.0.3'
  59. compile 'com.liulishuo.filedownloader:library:1.6.9'
  60. compile 'com.tencent.bugly:crashreport_upgrade:latest.release'
  61. compile 'com.tencent.mm.opensdk:wechat-sdk-android-with-mta:+'
  62. compile(name: 'utils', ext: 'aar')
  63. debugCompile 'com.readystatesoftware.chuck:library:1.1.0'
  64. compile 'de.hdodenhof:circleimageview:2.2.0'
  65. releaseCompile 'com.readystatesoftware.chuck:library-no-op:1.1.0'
  66. compile 'org.xutils:xutils:3.5.0'
  67. compile 'com.mylhyl:acp:1.1.7'
  68. compile 'cn.yipianfengye.android:zxing-library:2.2'
  69. compile 'com.github.huburt-Hu:NewbieGuide:v1.2.0'
  70. }