我正在尝试使用此迁移指南将我的自动完成小部件 Places SDK Google 迁移到新的小部件。但是一旦我尝试生成我的发布或调试 apk 开始得到错误
Duplicate jar entry [com/google/common/util/concurrent/ListenableFuture.class]
我阅读了几个 stackoverflow 问题和其他参考资料,发现它是由重复的番石榴(ListenableFuture)引起的。下面列出了应用程序级别的依赖项。
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation androidx.appcompat:appcompat:1.1.0-alpha01
implementation 'androidx.mediarouter:mediarouter:1.1.0-alpha01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.google.android.libraries.places:places:1.0.0'
implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-safetynet:16.0.0'
implementation 'com.google.firebase:firebase-core:16.0.7'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
implementation 'com.google.android.material:material:1.1.0-alpha03'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.intuit.sdp:sdp-android:1.0.3'
implementation 'com.roughike:bottom-bar:2.3.1'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.razorpay:checkout:1.4.7'
implementation 'me.relex:circleindicator:1.2.2@aar'
implementation 'com.firebase:firebase-jobdispatcher:0.8.5'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.8'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.multidex:multidex-instrumentation:2.0.0'
}
到目前为止我所做的 - 1.从地方sdk中排除了listenablefuture
implementation ('com.google.android.libraries.places:places:1.0.0'){
exclude group: 'com.google.guava', module: 'listenablefuture'
}
结果是一样的。listenablefuture 仍然重复 jar 条目错误
从地方sdk中排除整个番石榴
实施('com.google.android.libraries.places:places:1.0.0'){排除组:'com.google.guava'}
结果没有错误。但是安装了apk,当我运行包含自动完成小部件的活动时,它会出现以下错误并且应用程序崩溃。
Fatal Exception: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/common/base/Preconditions;
at com.google.android.libraries.places.api.Places.initialize(Unknown Source:5)
at com.google.android.libraries.places.api.Places.initialize(Unknown Source:1)
at com.proyujan.proyujan.MapLeadActivity.onCreate(Unknown Source:26)
at android.app.Activity.performCreate(Activity.java:7372)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1218)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3147)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3302)
at android.app.ActivityThread.-wrap12(Unknown Source)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1891)
at android.os.Handler.dispatchMessage(Handler.java:108)
at android.os.Looper.loop(Looper.java:166)
at android.app.ActivityThread.main(ActivityThread.java:7425)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:245)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:921)
- 在我的 appcompat 依赖项中找到了 listenablefuture 模块。步骤 1 和 2 也使用 appcompat 但结果相同。
请帮忙。如何解决这个问题。