build.gradle 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 28
  4. buildToolsVersion '28.0.2'
  5. useLibrary 'org.apache.http.legacy'
  6. defaultConfig {
  7. applicationId "com.silence.commonframe"
  8. minSdkVersion 15
  9. targetSdkVersion 28
  10. versionCode 1
  11. versionName "1.0"
  12. javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. sourceSets.main {
  21. jniLibs.srcDirs = ['libs']
  22. }
  23. }
  24. dependencies {
  25. // compile fileTree(include: ['*.jar'], dir: 'libs')
  26. // testCompile 'junit:junit:4.12'
  27. //
  28. // compile 'com.jakewharton:butterknife:7.0.1'
  29. //
  30. // compile 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-14'
  31. // compile 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-14'
  32. //
  33. // compile 'com.android.support:recyclerview-v7:25.0.1'
  34. //
  35. // compile 'com.youth.banner:banner:1.4.9'
  36. // compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.34'
  37. //
  38. // compile 'com.google.code.gson:gson:2.8.5'
  39. //
  40. // compile 'cn.bingoogolapple:bga-refreshlayout:1.1.7'
  41. // compile 'cn.bingoogolapple:bga-baseadapter:1.2.9@aar'
  42. // compile 'com.squareup.retrofit2:retrofit:2.4.0'
  43. // compile 'com.squareup.retrofit2:converter-gson:2.4.0'
  44. // compile 'com.google.code.gson:gson:2.8.0'
  45. // compile 'com.lzy.net:okgo:2.1.4'
  46. // compile 'com.android.support:cardview-v7:23.4.0'
  47. // compile 'com.huxq17.xrefreshview:xrefreshview:3.6.9'
  48. // compile 'com.yanzhenjie:recyclerview-swipe:1.1.4'
  49. //
  50. // compile 'com.mylhyl:acp:1.2.0'
  51. // compile project(':library')
  52. // compile 'com.android.support.constraint:constraint-layout:1.1.3'
  53. // compile 'com.wx.ovalimageview:roundimageview:1.1.0'
  54. // //圆形图片
  55. // compile files('libs/zxing.jar')
  56. // compile 'com.amap.api:3dmap:latest.integration'
  57. // //高德地图3d
  58. // compile 'com.amap.api:location:latest.integration'
  59. // //高德地图
  60. // compile 'com.android.support:design:23.4.0'
  61. //
  62. // compile files('libs/jcore-android-1.2.7.jar')
  63. // // compile 'com.github.LuckSiege.PictureSelector:picture_library:v2.2.3'//图片选择器
  64. //
  65. //
  66. // compile 'com.android.support:appcompat-v7:23.4.0'
  67. compile fileTree(include: ['*.jar'], dir: 'libs')
  68. testApi 'junit:junit:4.12'
  69. implementation 'com.jakewharton:butterknife:7.0.1'
  70. implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-14'
  71. implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-14'
  72. // implementation 'com.android.support:recyclerview-v7:25.0.1'
  73. implementation 'com.youth.banner:banner:1.4.9'
  74. implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.34'
  75. implementation 'com.google.code.gson:gson:2.8.5'
  76. implementation 'cn.bingoogolapple:bga-refreshlayout:1.1.7'
  77. implementation 'cn.bingoogolapple:bga-baseadapter:1.2.9@aar'
  78. implementation 'com.squareup.retrofit2:retrofit:2.4.0'
  79. implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
  80. implementation 'com.google.code.gson:gson:2.8.0'
  81. implementation 'com.lzy.net:okgo:2.1.4'
  82. //noinspection GradleCompatible
  83. implementation 'com.android.support:cardview-v7:28.0.0'
  84. implementation 'com.huxq17.xrefreshview:xrefreshview:3.6.9'
  85. implementation 'com.yanzhenjie:recyclerview-swipe:1.1.4'
  86. implementation 'com.mylhyl:acp:1.2.0'
  87. implementation project(':library')
  88. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  89. implementation 'com.wx.ovalimageview:roundimageview:1.1.0'
  90. //圆形图片
  91. implementation files('libs/zxing.jar')
  92. implementation 'com.amap.api:3dmap:latest.integration'
  93. //高德地图3d
  94. implementation 'com.amap.api:location:latest.integration'
  95. //高德地图
  96. implementation 'com.android.support:design:28.0.0'
  97. implementation files('libs/jcore-android-1.2.7.jar')
  98. // implementation 'com.github.LuckSiege.PictureSelector:picture_library:v2.2.3'//图片选择器
  99. // implementation 'com.github.LuckSiege.PictureSelector:picture_library:v2.1.0'
  100. implementation 'com.github.donkingliang:ImageSelector:1.2.0'
  101. // implementation 'com.github.LuckSiege.PictureSelector:picture_library:v2.2.3'
  102. implementation 'com.android.support:appcompat-v7:28.0.0'
  103. implementation 'com.android.support:support-v4:28.0.0'
  104. implementation 'de.hdodenhof:circleimageview:3.0.0'
  105. //圆形图片
  106. }