build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdkVersion 34
  6. buildToolsVersion "34.0.0"
  7. defaultConfig {
  8. applicationId "hm.wine.seller"
  9. minSdkVersion 25
  10. targetSdkVersion 34
  11. versionCode 23122207
  12. versionName "v2023.12.22-07"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. }
  26. dependencies {
  27. implementation "androidx.appcompat:appcompat:1.1.0"
  28. implementation "com.google.android.material:material:1.1.0"
  29. implementation "com.squareup.okhttp3:okhttp:3.10.0"
  30. implementation "com.alibaba:fastjson:1.1.55.android"
  31. implementation files("libs/zckjAPI-2.2.jar")
  32. implementation 'com.github.cl-6666:serialPort:v3.1.7'
  33. testImplementation "junit:junit:4.+"
  34. androidTestImplementation "androidx.test.ext:junit:1.1.1"
  35. androidTestImplementation "androidx.test.espresso:espresso-core:3.2.0"
  36. }