零售收银终端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.

48 lines
1.1 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. }
  18. repositories {
  19. flatDir {
  20. dirs 'libs'
  21. }
  22. }
  23. dependencies {
  24. // implementation project(path: ':uniplugin_v4_ph')
  25. compileOnly fileTree(dir: 'libs', include: ['*.jar'])
  26. compileOnly 'androidx.recyclerview:recyclerview:1.0.0'
  27. compileOnly 'androidx.legacy:legacy-support-v4:1.0.0'
  28. compileOnly 'androidx.appcompat:appcompat:1.0.0'
  29. compileOnly 'com.alibaba:fastjson:1.1.46.android'
  30. compileOnly fileTree(dir: '../app/libs', include: ['uniapp-v8-release.aar'])
  31. compileOnly 'com.alibaba:fastjson:1.1.46.android'
  32. implementation 'com.blankj:utilcode:1.30.7'
  33. // 进程守护
  34. // implementation project(path: ':daemonlibrary')
  35. }