- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Android工作室给出了错误:
Execution failed for task ':app:kaptDebugKotlin'.
> A failure occurred while executing org.jetbrains.kotlin.gradle.internal.KaptExecution
> java.lang.reflect.InvocationTargetException (no error message)
我想在我的项目中添加 Kotlin Coroutines 并将其与 Room 数据库一起使用。但是在添加了所有库后,我得到了这个错误。这是来自编译器的所有信息。
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
//apply plugin: 'androidx.navigation.safeargs'
kotlin {
experimental {
coroutines 'enable'
}
}
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.bestcred.coursetthree"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
//vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
// Enables data binding.
buildFeatures {
dataBinding true
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
// Support libraries
implementation "androidx.appcompat:appcompat:1.2.0"
implementation 'com.google.android.material:material:1.2.0'
implementation "androidx.fragment:fragment:1.2.5"
implementation "androidx.constraintlayout:constraintlayout:2.0.0"
// Android KTX
implementation 'androidx.core:core-ktx:1.3.1'
// Room and Lifecycle dependencies
implementation "androidx.room:room-runtime:$room_version"
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
kapt "android.arch.persistence.room:compiler:$room_version"
// Kotlin Extensions and Coroutines support for Room
implementation "androidx.room:room-ktx:$room_version"
// Coroutines
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutine_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutine_version"
}
kotlin_version = "1.4.0"
room_version = "2.2.5"
coroutine_version = '1.3.9'
我更新了 Room 版本并添加了 Kotlin Coroutines。什么问题?
最佳答案
Android Studio 的 UI 只是隐藏了错误......
发生错误时,它会在 ListView 中突出显示该项目,并在终端 View 中显示无用的消息。
要找到真正的错误,请在 ListView 中选择根项,以便 Android Studio 在终端 View 中显示整个构建输出,然后滚动查找错误。
关于android - 执行 org.jetbrains.kotlin.gradle.internal.KaptExecution > java.lang.reflect.InvocationTargetException 时发生故障(无错误消息),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63649694/
由于我未知的原因,将@Query添加到我的房间后,我的应用将无法构建。 我通过逐步执行所有操作来弄清楚它是@Query,最终在我添加@Query函数时出现了错误。 我得到的错误是: FAILURE:
我已经为这个错误苦苦挣扎了许多小时,并且能够追溯到第一次发生该错误时。将@Database批注添加到数据库类后,我立即收到一条错误消息,提示“执行org.jetbrains.kotlin.gradle
这是我得到的错误: > Task :app:kaptDevDebugKotlin FAILED location: package ...app.databinding FAILURE: Buil
突然间我开始收到这个错误,我不明白为什么如果有人让我知道这个错误在哪里,就会有足够的帮助。由于 android studio 的新更新,我能得到的就是这个。 我得到的错误的详细摘要。 Task :ap
在我的应用程序中,我有一个模型类,它有一些变量,我可以使用改造和房间数据库在这个应用程序中调用和显示这些数据。这意味着此应用程序首先从服务器收集数据,然后显示在房间数据库中。但是当我在这个模型类中使用
我将一个 java 数据绑定(bind)项目转换为一个 kotlin 数据绑定(bind)项目。编译并尝试构建后面临问题 Unable to find the ActivityMainDataBind
我正在尝试使用 Glide 实现 Firebase UI,我遵循了指南 here和 here ,我得到了这个奇怪的错误: A failure occurred while executing org.
首先, 我很清楚已经在这里发布了很多关于这个错误的问题,但似乎没有一个问题有合适的解决方案,尤其是我需要的解决方案。 我被以下错误困住了一个多星期。 我正在开发一个使用 Kotlin、MVVM、Cle
[使用 Gradle 4.0.0],我尝试在 Andriod Studio 4 的 Android Kotlin 中实现按房间进行本地存储。 当我尝试构建项目时,我在构建控制台中遇到错误 A fail
我正在使用 Room 进行离线存储。我的模型包含 Room 不支持的列表,我编写了类型转换器,但现在我收到了这个错误。当我删除@Database 注释时,错误就会出现,但是使用@Database 注释
在 Android Studio 中构建我的项目时,我收到了这个信息不多的错误。我已经尝试了 stackoverflow 中的所有方法,但没有任何效果。 任务“:app:kaptDebugKotlin
Android工作室给出了错误: Execution failed for task ':app:kaptDebugKotlin'. > A failure occurred while execut
任务“:common:kaptDebugKotlin”执行失败。 A failure occurred while executing org.jetbrains.kotlin.gradle.inte
任务“:common:kaptDebugKotlin”执行失败。 A failure occurred while executing org.jetbrains.kotlin.gradle.inte
我是一名优秀的程序员,十分优秀!