零售收银终端CheckoutPad_ox_as
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
2.6 KiB

1 year ago
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. defaultConfig {
  5. minSdkVersion 16
  6. targetSdkVersion 28
  7. versionCode 1
  8. versionName "1.0"
  9. testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. sourceSets { main { assets.srcDirs = ['src/assets', 'src/assets/','src/assets/image'] } }
  18. }
  19. repositories {
  20. flatDir {
  21. dirs 'libs'
  22. }
  23. // maven { url 'https://jitpack.io' }
  24. // google()
  25. // jcenter()
  26. }
  27. dependencies {
  28. // implementation project(path: ':oxplugin_video_manager')
  29. // implementation project(path: ':uniplugin_module_TXLiveAVSDK')
  30. // implementation project(path: ':oxplugin_video_manager')
  31. // implementation project(path: ':ugckit')
  32. // implementation project(path: ':ugckit')
  33. // implementation project(path: ':oxplugin_hardware')
  34. implementation project(path: ':daemonlibrary')
  35. // implementation project(path: ':pp_AI_module') //引入百度AI飞桨
  36. // implementation project(path: ':pp_AI_FastDeployDetection_module') //引入百度AI FastDeploy
  37. // implementation project(path: ':uniplugin_module_PP_FastDeploy')
  38. // implementation project(path: ':pp_lite_detect_PicoDet') //引入百度AI飞桨
  39. // implementation project(path: ':pp_lite_detection')
  40. // implementation project(path: ':appSettingLib') //引入百度AI飞桨
  41. compileOnly fileTree(dir: 'libs', include: ['*.jar'])
  42. compileOnly fileTree(dir: '../app/libs', include: ['uniapp-v8-release.aar'])
  43. compileOnly 'androidx.recyclerview:recyclerview:1.0.0'
  44. compileOnly 'androidx.legacy:legacy-support-v4:1.0.0'
  45. compileOnly 'androidx.appcompat:appcompat:1.0.0'
  46. implementation 'com.alibaba:fastjson:1.1.46.android'
  47. implementation 'com.facebook.fresco:fresco:1.13.0'
  48. /*implementation 'com.android.support:appcompat-v7:28.0.0'
  49. testImplementation 'junit:junit:4.12'
  50. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  51. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'*/
  52. implementation'org.nanohttpd:nanohttpd:2.3.1'
  53. implementation 'com.blankj:utilcode:1.30.7'
  54. // 2.3.2-SNAPSHOT
  55. //添加进程保活库
  56. // implementation 'com.github.wangshihu123:DaemonLibrary:v1.2.1'
  57. implementation 'androidx.annotation:annotation:1.1.0'
  58. //添加ffmpeg android, 尝试解决shall执行大文件无回调问题
  59. implementation 'nl.bravobit:android-ffmpeg:1.1.7'
  60. }