ฉันกำลังพยายามสร้างแอปใน Android Studio หลังจากเพิ่มไลบรารี Eclipse Paho เป็นการพึ่งพาผู้ไล่ระดับ (หรือเป็น 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/' }
}