build.gradle 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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 'org.jetbrains.kotlin.kapt'
  30. id 'kotlin-parcelize'
  31. }
  32. android {
  33. compileSdkVersion 31
  34. // buildToolsVersion ANDROID_BUILD_TOOLS_VERSION
  35. defaultConfig {
  36. minSdkVersion 28
  37. targetSdkVersion 31
  38. versionCode SAGA_CODE.toInteger()
  39. versionName SAGA_ANDROID_VERSION
  40. testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
  41. vectorDrawables.useSupportLibrary = true
  42. multiDexEnabled true
  43. ndk {
  44. //选择要添加的对应cpu类型的.so库。
  45. abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64'
  46. // 还可以添加 abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64', 'mips', 'mips64', 'arm64-v8a'
  47. }
  48. javaCompileOptions {
  49. annotationProcessorOptions {
  50. arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
  51. }
  52. }
  53. }
  54. signingConfigs {
  55. release {
  56. storeFile file("persagy.keystore")
  57. storePassword "persagy"
  58. keyAlias "persagy"
  59. keyPassword "persagy"
  60. }
  61. debug {
  62. storeFile file("persagy.keystore")
  63. storePassword "persagy"
  64. keyAlias "persagy"
  65. keyPassword "persagy"
  66. }
  67. }
  68. buildTypes {
  69. release {
  70. // minifyEnabled false
  71. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  72. }
  73. }
  74. // 解决lint语法检查错误(kotlin语法无法通过lint)
  75. lintOptions {
  76. abortOnError false
  77. }
  78. kotlinOptions {
  79. jvmTarget = JVM_TARGET
  80. }
  81. packagingOptions {
  82. exclude 'META-INF/DEPENDENCIES.txt'
  83. exclude 'META-INF/LICENSE.txt'
  84. exclude 'META-INF/NOTICE.txt'
  85. exclude 'META-INF/NOTICE'
  86. exclude 'META-INF/LICENSE'
  87. exclude 'META-INF/DEPENDENCIES'
  88. exclude 'META-INF/notice.txt'
  89. exclude 'META-INF/license.txt'
  90. exclude 'META-INF/dependencies.txt'
  91. exclude 'META-INF/LGPL2.1'
  92. }
  93. compileOptions {
  94. targetCompatibility JavaVersion.VERSION_1_8
  95. sourceCompatibility JavaVersion.VERSION_1_8
  96. }
  97. sourceSets {
  98. main {
  99. //jni库的调用会到资源文件夹下libs里面找so文件
  100. jniLibs.srcDirs = ['libs']
  101. }
  102. }
  103. configurations {
  104. cleanedAnnotations
  105. compile.exclude group: 'com.intellij', module: 'annotations'
  106. }
  107. }
  108. dependencies {
  109. implementation fileTree(dir: 'libs', include: ['*.jar'])
  110. implementation files('libs/zbardecoder.jar')
  111. implementation files('libs/universal-image-loader-1.9.4-with-sources.jar')
  112. implementation files('libs/httpclient-4.3.5.jar')
  113. implementation files('libs/httpcore-4.3.2.jar')
  114. implementation 'com.google.ar:core:1.23.0'
  115. testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: JUNIT_VERSION
  116. androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
  117. exclude group: 'com.android.support', module: 'support-annotations'
  118. })
  119. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  120. // kotlin 依赖
  121. implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: KOTLIN_VERSION
  122. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  123. // android支持
  124. implementation 'androidx.core:core-ktx:1.6.0'
  125. implementation 'androidx.appcompat:appcompat:1.3.1'
  126. implementation 'com.google.android.material:material:1.4.0'
  127. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  128. // implementation group: 'androidx.appcompat', name: 'appcompat', version: ANDROID_SUPPORT_VERSION
  129. // implementation group: 'com.google.android.material', name: 'material', version: ANDROID_SUPPORT_VERSION
  130. // implementation group: 'androidx.legacy', name: 'legacy-support-v4', version: ANDROID_SUPPORT_VERSION
  131. // implementation group: 'androidx.constraintlayout', name: 'constraintlayout', version: CONSTRAINT_VERSION
  132. implementation 'com.github.bumptech.glide:glide:4.0.0'
  133. implementation 'com.github.bumptech.glide:okhttp3-integration:4.0.0'
  134. kapt 'com.github.bumptech.glide:compiler:4.0.0'
  135. implementation 'com.contrarywind:Android-PickerView:4.1.3'
  136. implementation 'com.bm.photoview:library:1.4.1'
  137. implementation 'com.yuyh.imgsel:library:1.3.8'
  138. implementation 'com.github.chrisbanes:PhotoView:1.2.6'
  139. implementation 'com.squareup.okhttp3:logging-interceptor:4.9.0'
  140. implementation 'commons-logging:commons-logging:1.2'
  141. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  142. // anko依赖
  143. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-commons
  144. implementation group: 'org.jetbrains.anko', name: 'anko-commons', version: ANKO_VERSION
  145. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  146. // 图片加载框架
  147. // https://mvnrepository.com/artifact/com.squareup.picasso/picasso
  148. implementation group: 'com.squareup.picasso', name: 'picasso', version: PICASSO_VERSION
  149. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  150. // anko依赖
  151. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-common
  152. implementation group: 'org.jetbrains.anko', name: 'anko-common', version: ANKO_VERSION
  153. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-sdk25
  154. implementation group: 'org.jetbrains.anko', name: 'anko-sdk25', version: ANKO_VERSION
  155. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-appcompat-v7
  156. implementation group: 'org.jetbrains.anko', name: 'anko-appcompat-v7', version: ANKO_VERSION
  157. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-design
  158. implementation group: 'org.jetbrains.anko', name: 'anko-design', version: ANKO_VERSION
  159. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  160. // 运行时权限申请
  161. // https://mvnrepository.com/artifact/pub.devrel/easypermissions
  162. implementation group: 'pub.devrel', name: 'easypermissions', version: EASYPERMISSIONS_VERSION
  163. // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  164. // // 谷歌JSON解析
  165. // // https://mvnrepository.com/artifact/com.google.code.gson/gson
  166. // implementation group: 'com.google.code.gson', name: 'gson', version: GSON_VERSION
  167. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  168. // JSON解析
  169. // https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
  170. implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: JACKSON_VERSION
  171. // https://mvnrepository.com/artifact/org.greenrobot/eventbus
  172. implementation group: 'org.greenrobot', name: 'eventbus', version: EVENTBUS_VERSION
  173. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  174. // https://mvnrepository.com/artifact/javax.persistence/persistence-api
  175. implementation group: "javax.persistence", name: "persistence-api", version: PERSISTENCE_VERSION
  176. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  177. // 二维码与条形码
  178. // https://mvnrepository.com/artifact/com.google.zxing/core
  179. implementation group: 'com.google.zxing', name: 'core', version: ZXING_VERSION
  180. // https://mvnrepository.com/artifact/com.google.zxing/android-core
  181. implementation group: 'com.google.zxing', name: 'android-core', version: ZXING_VERSION
  182. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  183. // Sybotan依赖
  184. implementation group: 'cn.sagacloud', name: 'saga-kotlin-base', version: SAGA_KOTLIN_VERSION
  185. implementation project(':sybotan-android-base')
  186. implementation project(':sybotan-android-database')
  187. // implementation project(':sybotan-android-devices')
  188. // implementation project(':sybotan-android-views')
  189. implementation project(':sybotan-android-graphy')
  190. // implementation project(':sybotan-android-works')
  191. implementation project(':cadengine')
  192. // Sybotan依赖
  193. implementation group: 'cn.sagacloud', name: 'saga-kotlin-database', version: SAGA_KOTLIN_VERSION
  194. // implementation group: 'cn.sagacloud', name: 'sybotan-android-base', version: SYBOTAN_ANDROID_VERSION
  195. // implementation group: 'cn.sagacloud', name: 'sybotan-android-graphy', version: SYBOTAN_ANDROID_VERSION
  196. implementation 'androidx.multidex:multidex:2.0.1'
  197. implementation 'io.reactivex.rxjava2:rxjava:2.2.9'
  198. implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
  199. implementation 'com.trello.rxlifecycle2:rxlifecycle:2.2.1'
  200. implementation 'com.trello.rxlifecycle2:rxlifecycle-android:2.2.1'
  201. implementation 'com.trello.rxlifecycle2:rxlifecycle-components:2.2.1'
  202. implementation 'com.squareup.retrofit2:retrofit:2.9.0'
  203. implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
  204. implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'
  205. implementation 'org.kodein.di:kodein-di:7.8.0'
  206. //implementation 'org.kodein.di:kodein-di-framework-android-support:7.8.0'
  207. implementation 'org.kodein.di:kodein-di-framework-android-core:7.8.0'
  208. implementation 'org.kodein.di:kodein-di-framework-android-x:7.8.0'
  209. implementation 'org.kodein.di:kodein-di-framework-android-x-viewmodel:7.8.0'
  210. implementation 'com.arashivision.sdk:sdkcamera:1.3.10'
  211. implementation 'com.arashivision.sdk:sdkmedia:1.3.10'
  212. implementation 'com.lzy.net:okgo:3.0.4'
  213. implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
  214. androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
  215. exclude group: 'com.android.support', module: 'support-annotations'
  216. })
  217. // room
  218. implementation('androidx.room:room-runtime:2.4.0-alpha05', {
  219. exclude group: 'com.intellij', module: 'annotations'
  220. })
  221. kapt('androidx.room:room-compiler:2.4.0-alpha05', {
  222. exclude group: 'com.intellij', module: 'annotations'
  223. })
  224. implementation('androidx.room:room-ktx:2.4.0-alpha05', {
  225. exclude group: 'com.intellij', module: 'annotations'
  226. })
  227. // lifecycle
  228. implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0-rc01'
  229. implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.0-rc01'
  230. implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0-rc01'
  231. implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2'
  232. debugImplementation 'com.amitshekhar.android:debug-db:1.0.4'
  233. //屏幕适配
  234. // implementation 'me.jessyan:autosize:1.2.1'
  235. implementation 'com.rm:rmswitch:1.2.2'
  236. androidTestImplementation("androidx.test.ext:junit:1.1.3")
  237. androidTestImplementation("androidx.test.ext:junit-ktx:1.1.3")
  238. testImplementation("junit:junit:4.13.2")
  239. implementation 'cn.hutool:hutool-all:5.4.7'
  240. implementation group: 'org.locationtech.jts', name: 'jts-core', version: '1.16.1'
  241. }