gpt4 book ai didi

android - 无法使用 LiveParse 查询合并 dex

转载 作者:太空宇宙 更新时间:2023-11-03 13:08:48 25 4
gpt4 key购买 nike

我正在研究 LiveQueryParse,但是当我同时使用两个 gradle 链接时,出现以下错误:

Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.
> java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex

我正在使用这些 gradle 链接,它给我一个错误:

compile 'com.github.tgio:parse-livequery:1.0.3'
compile 'com.parse:parse-android:1.16.3'

我已经将以下代码放入我的应用程序 Gradle 文件中:

android {
compileSdkVersion 27
defaultConfig {
applicationId "com.dcas.user"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

defaultConfig {
multiDexEnabled true
}

}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:27.0.1'
compile 'com.android.support:exifinterface:27.0.1'
testImplementation 'junit:junit:4.12'
compile 'com.android.support:cardview-v7:27.0.1'
compile 'com.github.tgio:parse-livequery:1.0.3'
compile 'com.parse:parse-android:1.16.3'
compile 'com.android.support:multidex:1.0.1'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
}

我也已经清理了我的项目,删除了构建文件和 .gradle 文件夹,但我仍然收到错误。我已经搜索过类似的问题和解决方案,但仍然无法正常工作。

最佳答案

  • 您应该使用implementation 而不是compile
  • 设置所有更新版本。

你应该设置

compileSdkVersion 27
buildToolsVersion "27.0.3"
defaultConfig {
applicationId "//"
minSdkVersion 19
targetSdkVersion 27

然后使用

implementation 'com.parse:parse-android:1.17.3'

关于android - 无法使用 LiveParse 查询合并 dex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51058140/

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