- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 react native 和 android 开发的新手。
目前我想构建一个 APK,但我遇到了这个错误。
**FAILURE:构建失败并出现异常。
* 什么地方出了错:
无法确定任务 ':app:lintVitalRelease' 的依赖关系。
Could not resolve all task dependencies for configuration ':app:releaseRuntimeClasspath'. Could not resolve project :react-native-cookies. Required by: project :app Unable to find a matching configuration of project :react-native-cookies: None of the consumable configurations have attributes.**
release {
signingConfig signingConfigs.release
matchingFallbacks = ['release', 'debug']
}
}
dependencies {
implementation project(':react-native-cookies')
implementation project(':react-native-clear-app-cache')
implementation project(':react-native-vector-icons')
implementation project(':react-native-image-picker')
implementation project(':react-native-linear-gradient')
implementation project(':react-native-gesture-handler')
implementation project(':react-native-reanimated')
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
implementation "com.facebook.react:react-native:+" // From node_modules
implementation project(':react-native-orientation')
}
buildscript {
ext {
buildToolsVersion = "28.0.3" //28.0.3
minSdkVersion = 16
compileSdkVersion = 28 //28
targetSdkVersion = 28
supportLibVersion = "28.0.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
最佳答案
请将此添加到您的 构建.gradle
dependencies {
def multidex_version = "2.0.1"
implementation "androidx.multidex:multidex:$multidex_version"
}
并添加这个
defaultConfig {
multiDexEnabled true
}
这将解决您的问题
关于android - 无法确定任务 ':app:lintVitalRelease' 的依赖关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60942766/
gradle 构建出现问题,特别是在 Release模式下。一切工作在调试中运行良好。我找不到任何关于这个问题的信息。对这个问题有什么想法吗? > Stack trace: FAILURE: Buil
将 Android Studio 从 3.0 Canary 3 更新到 Beta 2,并将 Gradle 插件从 Alpha 5 更新到 Beta 2。调试构建很好,但是当尝试为发布构建类型生成签名
我是 react native 和 android 开发的新手。 目前我想构建一个 APK,但我遇到了这个错误。 **FAILURE:构建失败并出现异常。 * 什么地方出了错: 无法确定任务 ':ap
为什么我会收到这些错误 我尝试发布 apk 我运行“flutter build apk --release” 任务“:app:lintVitalRelease”的执行失败。 配置根项目“android
我尝试从我的 flutter 应用程序生成 apk。但是每次我变成这个错误代码 FAILURE: Build failed with an exception. What went wrong: Co
为什么在 Kotlin 中生成签名 Apk 时出现此错误?任何知道解决方案的人请发送答案。 Logcat 错误: Execution failed for task ':app:lintVitalRe
最近我在当前的 java 项目中添加了一些 kotlin Activity 和一个库项目。我可以毫无问题地运行项目。 clean - build - rebuild - run 一切正常。 生成签名
我尝试在 google play 上上传我的 apk 并遇到错误消息:“您上传了一个可调试的 APK。出于安全原因,您需要先禁用调试,然后才能在 Google Play 中发布它。了解有关可调试 AP
我不能再发布我的应用程序了。 我正在使用 AndroidStudio 4.0 和 flutter sdk 版本 1.17.5 。 我上个月发布了两次我的应用程序,但现在我真的不知道错误的原因是什么。
无法确定任务“:app:lintVitalRelease”的依赖关系。 Could not resolve all task dependencies for configuration ':app:
当我尝试在 android studio 中同步我的应用模块时,它会提示错误: ERROR: Failed to resolve: multidex-instrumentation Affected
为什么我得到这个错误我尝试清理和重建应用程序并制作应用程序发布为真,我得到同样的错误 Error:Execution failed for task ':app:lintVitalRelease'.
我是一名优秀的程序员,十分优秀!