gpt4 book ai didi

android - "Program type already present"是什么意思?

转载 作者:IT王子 更新时间:2023-10-29 07:03:52 26 4
gpt4 key购买 nike

我正在尝试在 Android Studio 中构建应用。添加 Eclipse Paho 库作为 gradle 依赖项(或者它是 Maven?我是 Android 生态系统的新手)后,我收到以下错误:

Program type already present: android.support.v4.accessibilityservice.AccessibilityServiceInfoCompat
Message{kind=ERROR, text=Program type already present: android.support.v4.accessibilityservice.AccessibilityServiceInfoCompat, sources=[Unknown source file], tool name=Optional.of(D8)}

我检查了许多与此错误相关的不同 StackOverflow 问题,但答案都是特定于某些库的。 我不仅要寻找错误的解决方案,还要了解错误的含义这样人们就可以更轻松地找出解决方案他们的具体案例。到目前为止,还没有答案。

从其他 StackOverflow 答案中,我了解到它与我的 gradle 文件有关。所以,这里是 app/build.gradle:

apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "---REDACTED FOR PRIVACY---"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support:support-media-compat:27.1.0'
implementation 'com.android.support:support-v13:27.1.0'
implementation 'com.google.android.gms:play-services-maps:12.0.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.0.2'
implementation 'org.eclipse.paho:org.eclipse.paho.android.service:1.0.2'
}

repositories {
maven { url 'https://repo.eclipse.org/content/repositories/paho-releases/' }
}

最佳答案

对我来说,只是清理项目就解决了问题

使用终端:

./gradlew clean

使用 Android Studio:

Build (menu) > Clean Project

关于android - "Program type already present"是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55432814/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com