build.gradle 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /*
  2. * ********************************************************************************************************************
  3. *
  4. * iFHS7.
  5. * ;BBMBMBMc rZMBMBR BMB
  6. * MBEr:;PBM, 7MBMMEOBB: BBB RBW
  7. * XK: BO SB. :SZ MBM. c;; ir BBM :FFr :SSF: ;xBMB:r iuGXv. i:. iF2;
  8. * DBBM0r. :D S7 ;XMBMB GMBMu. MBM: BMB MBMBBBMBMS WMBMBMBBK MBMBMBM BMBRBMBW .MBMBMBMBB
  9. * :JMRMMD .. , 1MMRM1; ;MBMBBR: MBM ;MB: BMB: MBM. RMBr sBMH BM0 UMB, BMB. KMBv
  10. * ;. XOW B1; :uM: 1RE, i .2BMBs rMB. MBO MBO JMB; MBB MBM BBS 7MBMBOBM: MBW :BMc
  11. * OBRJ.SEE MRDOWOR, 3DE:7OBM . ;BMB RMR7BM BMB MBB. BMB ,BMR .BBZ MMB rMB, BMM rMB7
  12. * :FBRO0D0 RKXSXPR. JOKOOMPi BMBSSWBMB; BMBB: MBMB0ZMBMS .BMBOXRBMB MBMDE RBM2;SMBM; MBB xBM2
  13. * iZGE O0SHSPO. uGZ7. sBMBMBDL :BMO OZu:BMBK, rRBMB0; ,EBMB xBMBr:ER. RDU :OO;
  14. * ,BZ, 1D0 RPSFHXR. xWZ .SMr . .BBB
  15. * :0BMRDG RESSSKR. 2WOMBW; BMBMR
  16. * i0BM: SWKHKGO MBDv
  17. * .UB OOGDM. MK, Copyright (c) 2015-2019. 斯伯坦机器人
  18. * , XMW ..
  19. * r All rights reserved.
  20. *
  21. * ********************************************************************************************************************
  22. */
  23. /*apply plugin: 'com.android.application'
  24. apply plugin: 'kotlin-android'
  25. apply plugin: 'kotlin-android-extensions'*/
  26. plugins {
  27. id 'com.android.application'
  28. id 'kotlin-android'
  29. /// id 'kotlin-android-extensions'
  30. // kotlin("kapt")
  31. id 'org.jetbrains.kotlin.kapt'
  32. id 'kotlin-parcelize'
  33. id 'org.jetbrains.kotlin.plugin.serialization' version '1.5.31'
  34. }
  35. android {
  36. compileSdkVersion 31
  37. // buildToolsVersion ANDROID_BUILD_TOOLS_VERSION
  38. defaultConfig {
  39. minSdkVersion 28
  40. targetSdkVersion 31
  41. versionCode SAGA_CODE.toInteger()
  42. versionName SAGA_ANDROID_VERSION
  43. testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
  44. vectorDrawables.useSupportLibrary = true
  45. multiDexEnabled true
  46. ndk {
  47. //选择要添加的对应cpu类型的.so库。
  48. abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64'
  49. // 还可以添加 abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64', 'mips', 'mips64', 'arm64-v8a'
  50. }
  51. javaCompileOptions {
  52. annotationProcessorOptions {
  53. arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
  54. }
  55. }
  56. }
  57. buildTypes {
  58. release {
  59. // minifyEnabled false
  60. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  61. }
  62. }
  63. // 解决lint语法检查错误(kotlin语法无法通过lint)
  64. lintOptions {
  65. abortOnError false
  66. }
  67. kotlinOptions {
  68. jvmTarget = JVM_TARGET
  69. }
  70. packagingOptions {
  71. exclude 'META-INF/DEPENDENCIES.txt'
  72. exclude 'META-INF/LICENSE.txt'
  73. exclude 'META-INF/NOTICE.txt'
  74. exclude 'META-INF/NOTICE'
  75. exclude 'META-INF/LICENSE'
  76. exclude 'META-INF/DEPENDENCIES'
  77. exclude 'META-INF/notice.txt'
  78. exclude 'META-INF/license.txt'
  79. exclude 'META-INF/dependencies.txt'
  80. exclude 'META-INF/LGPL2.1'
  81. }
  82. compileOptions {
  83. targetCompatibility JavaVersion.VERSION_1_8
  84. sourceCompatibility JavaVersion.VERSION_1_8
  85. }
  86. sourceSets {
  87. main {
  88. //jni库的调用会到资源文件夹下libs里面找so文件
  89. jniLibs.srcDirs = ['libs']
  90. }
  91. }
  92. configurations {
  93. cleanedAnnotations
  94. compile.exclude group: 'com.intellij', module: 'annotations'
  95. }
  96. }
  97. dependencies {
  98. implementation fileTree(dir: 'libs', include: ['*.jar'])
  99. implementation files('libs/zbardecoder.jar')
  100. implementation files('libs/universal-image-loader-1.9.4-with-sources.jar')
  101. implementation files('libs/httpclient-4.3.5.jar')
  102. implementation files('libs/httpcore-4.3.2.jar')
  103. testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: JUNIT_VERSION
  104. androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
  105. exclude group: 'com.android.support', module: 'support-annotations'
  106. })
  107. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  108. // kotlin 依赖
  109. implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: KOTLIN_VERSION
  110. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  111. // android支持
  112. implementation 'androidx.core:core-ktx:1.5.0'
  113. implementation 'androidx.appcompat:appcompat:1.3.1'
  114. implementation 'com.google.android.material:material:1.3.0'
  115. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  116. // implementation group: 'androidx.appcompat', name: 'appcompat', version: ANDROID_SUPPORT_VERSION
  117. // implementation group: 'com.google.android.material', name: 'material', version: ANDROID_SUPPORT_VERSION
  118. // implementation group: 'androidx.legacy', name: 'legacy-support-v4', version: ANDROID_SUPPORT_VERSION
  119. // implementation group: 'androidx.constraintlayout', name: 'constraintlayout', version: CONSTRAINT_VERSION
  120. implementation 'com.github.bumptech.glide:glide:4.0.0'
  121. implementation 'com.github.bumptech.glide:okhttp3-integration:4.0.0'
  122. kapt 'com.github.bumptech.glide:compiler:4.0.0'
  123. implementation 'com.contrarywind:Android-PickerView:4.1.3'
  124. implementation 'com.bm.photoview:library:1.4.1'
  125. implementation 'com.yuyh.imgsel:library:1.3.8'
  126. implementation 'com.github.chrisbanes:PhotoView:1.2.6'
  127. implementation 'com.squareup.okhttp3:logging-interceptor:3.1.2'
  128. implementation 'commons-logging:commons-logging:1.2'
  129. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  130. // anko依赖
  131. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-commons
  132. implementation group: 'org.jetbrains.anko', name: 'anko-commons', version: ANKO_VERSION
  133. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  134. // 图片加载框架
  135. // https://mvnrepository.com/artifact/com.squareup.picasso/picasso
  136. implementation group: 'com.squareup.picasso', name: 'picasso', version: PICASSO_VERSION
  137. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  138. // anko依赖
  139. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-common
  140. implementation group: 'org.jetbrains.anko', name: 'anko-common', version: ANKO_VERSION
  141. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-sdk25
  142. implementation group: 'org.jetbrains.anko', name: 'anko-sdk25', version: ANKO_VERSION
  143. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-appcompat-v7
  144. implementation group: 'org.jetbrains.anko', name: 'anko-appcompat-v7', version: ANKO_VERSION
  145. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-design
  146. implementation group: 'org.jetbrains.anko', name: 'anko-design', version: ANKO_VERSION
  147. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  148. // 运行时权限申请
  149. // https://mvnrepository.com/artifact/pub.devrel/easypermissions
  150. implementation group: 'pub.devrel', name: 'easypermissions', version: EASYPERMISSIONS_VERSION
  151. // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  152. // // 谷歌JSON解析
  153. // // https://mvnrepository.com/artifact/com.google.code.gson/gson
  154. // implementation group: 'com.google.code.gson', name: 'gson', version: GSON_VERSION
  155. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  156. // JSON解析
  157. // https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
  158. implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: JACKSON_VERSION
  159. // https://mvnrepository.com/artifact/org.greenrobot/eventbus
  160. implementation group: 'org.greenrobot', name: 'eventbus', version: EVENTBUS_VERSION
  161. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  162. // https://mvnrepository.com/artifact/javax.persistence/persistence-api
  163. implementation group: "javax.persistence", name: "persistence-api", version: PERSISTENCE_VERSION
  164. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  165. // 二维码与条形码
  166. // https://mvnrepository.com/artifact/com.google.zxing/core
  167. implementation group: 'com.google.zxing', name: 'core', version: ZXING_VERSION
  168. // https://mvnrepository.com/artifact/com.google.zxing/android-core
  169. implementation group: 'com.google.zxing', name: 'android-core', version: ZXING_VERSION
  170. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  171. // Sybotan依赖
  172. implementation group: 'cn.sagacloud', name: 'saga-kotlin-base', version: SAGA_KOTLIN_VERSION
  173. implementation project(':sybotan-android-base')
  174. implementation project(':sybotan-android-database')
  175. // implementation project(':sybotan-android-devices')
  176. // implementation project(':sybotan-android-views')
  177. implementation project(':sybotan-android-graphy')
  178. // implementation project(':sybotan-android-works')
  179. implementation project(':cadengine')
  180. // Sybotan依赖
  181. implementation group: 'cn.sagacloud', name: 'saga-kotlin-database', version: SAGA_KOTLIN_VERSION
  182. // implementation group: 'cn.sagacloud', name: 'sybotan-android-base', version: SYBOTAN_ANDROID_VERSION
  183. // implementation group: 'cn.sagacloud', name: 'sybotan-android-graphy', version: SYBOTAN_ANDROID_VERSION
  184. implementation 'androidx.multidex:multidex:2.0.1'
  185. implementation 'io.reactivex.rxjava2:rxjava:2.2.9'
  186. implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
  187. implementation 'com.trello.rxlifecycle2:rxlifecycle:2.2.1'
  188. implementation 'com.trello.rxlifecycle2:rxlifecycle-android:2.2.1'
  189. implementation 'com.trello.rxlifecycle2:rxlifecycle-components:2.2.1'
  190. implementation 'com.squareup.retrofit2:retrofit:2.9.0'
  191. implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
  192. implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'
  193. implementation 'org.kodein.di:kodein-di:7.8.0'
  194. //implementation 'org.kodein.di:kodein-di-framework-android-support:7.8.0'
  195. implementation 'org.kodein.di:kodein-di-framework-android-x:7.8.0'
  196. implementation 'org.kodein.di:kodein-di-framework-android-x-viewmodel:7.8.0'
  197. // kotlin
  198. implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.0-RC'
  199. implementation 'com.arashivision.sdk:sdkcamera:1.3.10'
  200. implementation 'com.arashivision.sdk:sdkmedia:1.3.10'
  201. implementation 'com.lzy.net:okgo:3.0.4'
  202. implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
  203. androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
  204. exclude group: 'com.android.support', module: 'support-annotations'
  205. })
  206. // room
  207. implementation('androidx.room:room-runtime:2.4.0-alpha05', {
  208. exclude group: 'com.intellij', module: 'annotations'
  209. })
  210. kapt('androidx.room:room-compiler:2.4.0-alpha05', {
  211. exclude group: 'com.intellij', module: 'annotations'
  212. })
  213. implementation('androidx.room:room-ktx:2.4.0-alpha05', {
  214. exclude group: 'com.intellij', module: 'annotations'
  215. })
  216. // lifecycle
  217. implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
  218. implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
  219. implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0-rc01'
  220. implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0'
  221. implementation 'com.squareup.okhttp3:logging-interceptor:3.14.4'
  222. }