build.gradle 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. compileSdkVersion rootProject.ext.android["compileSdkVersion"]
  6. buildToolsVersion rootProject.ext.android["buildToolsVersion"]
  7. defaultConfig {
  8. minSdkVersion rootProject.ext.android["minSdkVersion"]
  9. targetSdkVersion rootProject.ext.android["targetSdkVersion"]
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. compileOptions {
  18. sourceCompatibility JavaVersion.VERSION_1_8
  19. targetCompatibility JavaVersion.VERSION_1_8
  20. }
  21. }
  22. dependencies {
  23. implementation fileTree(dir: 'libs', include: ['*.jar'])
  24. implementation rootProject.ext.dependencies["appcompat"]
  25. implementation rootProject.ext.dependencies["material"]
  26. implementation rootProject.ext.dependencies["gson"]
  27. implementation rootProject.ext.dependencies["eventbus"]
  28. implementation rootProject.ext.dependencies["glide"]
  29. // 添加base依赖
  30. implementation project(path: ':lib_base')
  31. implementation project(path: ':lib_common')
  32. // 支付宝刷脸
  33. api project(path: ':lib_face:LocalRepo')
  34. //AMPE
  35. implementation project(path: ':lib_ampe')
  36. implementation project(path: ':lib_common')
  37. implementation 'com.alibaba:fastjson:1.2.76'
  38. //国密ma4加解密及签名
  39. implementation 'com.blankj:utilcodex:1.31.1'
  40. implementation 'cn.hutool:hutool-all:5.4.5'
  41. implementation 'org.bouncycastle:bcprov-jdk15to18:1.69'
  42. }