gpt4 book ai didi

android - 无法解析 : multidex-instrumentation

转载 作者:太空宇宙 更新时间:2023-11-03 12:44:04 24 4
gpt4 key购买 nike

在实现 multidex 时,每当我同步我的项目时都会遇到以下错误。

Failed to resolve: multidex-instrumentation

I used these instructions to set it up.

这里是相关的应用级build.gradle:

android {
compileSdkVersion 28

defaultConfig {
applicationId "xxx.xyz.zzz"
minSdkVersion 16
targetSdkVersion 22
multiDexEnabled true
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
}
dependencies {
compile 'com.android.support:multidex:1.0.3'
....and the rest
}

以及相关的项目级build.gradle:

buildscript {
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.google.gms:google-services:3.1.2'
classpath 'io.fabric.tools:gradle:1.+'
}
}

allprojects {
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven {
url "$rootDir/../node_modules/react-native/android"
}
google()
}
}

我在这里错过了什么?

最佳答案

在您的 gradle 文件中添加以下依赖项并检查。我遇到了同样的问题,通过添加它解决了这个问题。

androidTestImplementation 'com.android.support:multidex-instrumentation:1.0.3'

关于android - 无法解析 : multidex-instrumentation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53001329/

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