1234567891011121314151617181920212223242526272829303132333435363738394041 |
- plugins {
- id 'com.android.application'
- }
- android {
- compileSdkVersion 34
- buildToolsVersion "34.0.0"
- defaultConfig {
- applicationId "hm.wine.seller"
- minSdkVersion 25
- targetSdkVersion 34
- versionCode 23122207
- versionName "v2023.12.22-07"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation "androidx.appcompat:appcompat:1.1.0"
- implementation "com.google.android.material:material:1.1.0"
- implementation "com.squareup.okhttp3:okhttp:3.10.0"
- implementation "com.alibaba:fastjson:1.1.55.android"
- implementation files("libs/zckjAPI-2.2.jar")
- implementation 'com.github.cl-6666:serialPort:v3.1.7'
- testImplementation "junit:junit:4.+"
- androidTestImplementation "androidx.test.ext:junit:1.1.1"
- androidTestImplementation "androidx.test.espresso:espresso-core:3.2.0"
- }
|