build.gradle 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.jakewharton.butterknife'
  3. android {
  4. compileSdkVersion 28
  5. useLibrary 'org.apache.http.legacy'
  6. defaultConfig {
  7. minSdkVersion 16
  8. targetSdkVersion 28
  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. compileOptions {
  20. sourceCompatibility = 1.8
  21. targetCompatibility = 1.8
  22. }
  23. buildToolsVersion = '28.0.3'
  24. }
  25. repositories {
  26. flatDir {
  27. dirs 'libs'
  28. }
  29. }
  30. configurations.all {
  31. resolutionStrategy.eachDependency { DependencyResolveDetails details ->
  32. def requested = details.requested
  33. if (requested.group == 'com.android.support') {
  34. if (!requested.name.startsWith("multidex")) {
  35. details.useVersion '28.0.0'
  36. }
  37. }
  38. }
  39. }
  40. dependencies {
  41. compileOnly fileTree(dir: 'libs', include: ['*.jar'])
  42. compileOnly fileTree(dir: '../app/libs', include: ['uniapp-v8-release.aar'])
  43. implementation fileTree(dir: '../app/libs', include: ['android-smartband-sdk-sxrblejy2aidl-release.aar'])
  44. implementation fileTree(dir: '../app/libs', include: ['android-smartband-sdk-sxrblejy2library-release.aar'])
  45. compileOnly "com.android.support:recyclerview-v7:28.0.0"
  46. compileOnly "com.android.support:support-v4:28.0.0"
  47. compileOnly "com.android.support:appcompat-v7:28.0.0"
  48. implementation 'com.alibaba:fastjson:1.1.46.android'
  49. implementation 'com.facebook.fresco:fresco:0.12.0'
  50. //gson引用
  51. implementation 'com.google.code.gson:gson:2.8.5'
  52. //squareup公司的HTTP请求框架,基于OKHTTP的封装,下面两个是gson解析器和rx2的适配器
  53. implementation 'com.squareup.retrofit2:retrofit:2.5.0'
  54. implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
  55. implementation 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
  56. //观察者模式框架,以及对应android的包
  57. implementation 'io.reactivex.rxjava2:rxjava:2.2.7'
  58. implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
  59. implementation 'com.jakewharton:butterknife:9.0.0'
  60. annotationProcessor 'com.jakewharton:butterknife-compiler:9.0.0'
  61. /*implementation 'com.android.support:appcompat-v7:28.0.0'
  62. testImplementation 'junit:junit:4.12'
  63. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  64. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'*/
  65. }