- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么在 Kotlin 中生成签名 Apk 时出现此错误?任何知道解决方案的人请发送答案。
Logcat 错误:
Execution failed for task ':app:lintVitalRelease'.
Lint found fatal errors while assembling a release target.
我正在添加 build.gradle 文件。我不知道我的代码有什么问题,所以请任何知道解决方案的人回答。
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.testing.app"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:27.1.1'
testImplementation 'junit:junit:4.12'
implementation "android.arch.persistence.room:runtime:1.1.1"
kapt "android.arch.persistence.room:compiler:1.1.1"
implementation "android.arch.lifecycle:livedata:1.1.1"
kapt "android.arch.lifecycle:compiler:1.1.1"
implementation 'com.karumi:dexter:5.0.0'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation "org.jetbrains.anko:anko:$anko_version"
//Anko Commons
implementation "org.jetbrains.anko:anko-commons:$anko_version"
implementation "org.jetbrains.anko:anko-appcompat-v7-commons:$anko_version"
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.github.medyo:android-about-page:1.2.2'
implementation 'com.google.firebase:firebase-ml-vision-image-label-model:17.0.2'
implementation "com.google.firebase:firebase-ml-model-interpreter:17.0.3"
implementation "com.google.firebase:firebase-ml-vision:19.0.2"
implementation 'com.google.firebase:firebase-core:16.0.7'
implementation 'com.google.firebase:firebase-crash:16.2.1'
}
apply plugin: 'com.google.gms.google-services'
最佳答案
我遇到了这个问题并通过添加解决了它:
lintOptions {
checkReleaseBuilds false
}
给我的
build.gradle android{ } 部分中的文件。
关于android - 收到错误 : Execution failed for task ':app:lintVitalRelease' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66932222/
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'.
我是一名优秀的程序员,十分优秀!