报错:Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':app:debugCompileClasspath'.

/
日志报错: getParameter(0xf21b88c4:qcom.decoder.hevc, ??(0x7f000044)) ERROR: UnsupportedSetting(0x80001019)

bulid.gradle(app)
plugins {
id 'com.android.application'
}
android {
namespace 'car.bkrc.com.car2023'
compileSdk 33
defaultConfig {
applicationId "car.bkrc.com.car2023"
minSdk 24
versionCode 1
versionName "2023-V1.1"
targetSdkVersion 33
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
ndk {
moduleName "serial_port"
ldLibs "log", "z", "m"
//noinspection ChromeOsAbiSupport
abiFilters "arm64-v8a"
}
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
buildFeatures{
dataBinding = true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
compileSdk 33
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation files('libs/camerautil.jar')
//noinspection GradleCompatible
implementation 'androidx.recyclerview:recyclerview:1.3.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.github.bumptech.glide:glide:4.12.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'org.greenrobot:eventbus:3.3.1'
implementation files('libs/camerautil.jar')
implementation project(path: ':openCVLibrary')
implementation files('C:\\Android\\core-3.4.1.jar')
testImplementation 'junit:junit:4.13.2'
implementation 'com.github.NodeMedia:NodeMediaClient-Android:3.1.5'
implementation files('libs/usbSerialForAndroid-debug.aar')
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.28'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.github.D10NGYANG:DL10RoundMenuView:1.0.5'
//注意查看一否导入二维码核心识别库
implementation 'com.google.zxing:core:3.4.1' // 多二维码识别核心库,移植时请复制本行代码
implementation files('libs/libvlc-all-3.3.0-eap17.aar')
implementation 'com.github.HyperInspire:hyperlpr3-android-sdk:1.0.3'
}