plugins { alias(libs.plugins.androidApplication) } android { namespace 'com.zzyd.jjeface' compileSdk 34 defaultConfig { applicationId "com.zzyd.jjeface" minSdk 24 targetSdk 34 versionCode 1 versionName "1.0" 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 } buildFeatures { dataBinding = true } packagingOptions { pickFirst 'lib/x86/libc++_shared.so' pickFirst 'lib/x86_64/libc++_shared.so' pickFirst 'lib/armeabi-v7a/libc++_shared.so' pickFirst 'lib/arm64-v8a/libc++_shared.so' } } dependencies { /* implementation fileTree(dir:'libs/deptrumSDK.aar', include: ['*.jar', '*.aar']) implementation fileTree(dir:'libs/ImiSDK.aar', include: ['*.jar', '*.aar']) implementation fileTree(dir:'libs/orbbec_module-debug.aar', include: ['*.jar', '*.aar']) implementation fileTree(dir:'libs/FaceSDK_8.1_20230216-release.aar', include: ['*.jar', '*.aar']) implementation fileTree(dir:'libs/opencv.aar', include: ['*.jar', '*.aar']) */ implementation libs.appcompat implementation libs.material testImplementation libs.junit androidTestImplementation libs.ext.junit androidTestImplementation libs.espresso.core implementation project(':registerlibrary') implementation project(':speark') implementation project(':facelibrary') implementation project(':datalibrary') implementation project(':settinglibrary') implementation project(':http') implementation 'org.java-websocket:Java-WebSocket:1.5.2' implementation 'com.google.zxing:core:3.3.0' implementation 'com.lzy.net:okgo:3.0.4' implementation'com.google.code.gson:gson:2.8.6'; implementation 'org.ligboy.retrofit2:converter-fastjson-android:2.1.0' //lombok 组件 compileOnly 'org.projectlombok:lombok:1.18.34' annotationProcessor 'org.projectlombok:lombok:1.18.34' implementation "io.github.cymchad:BaseRecyclerViewAdapterHelper:3.0.14" implementation 'com.github.bumptech.glide:glide:4.16.0' implementation "com.github.bumptech.glide:okhttp3-integration:4.16.0" annotationProcessor 'com.github.bumptech.glide:compiler:4.16.0' }