- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经为这个错误苦苦挣扎了许多小时,并且能够追溯到第一次发生该错误时。将@Database批注添加到数据库类后,我立即收到一条错误消息,提示“执行org.jetbrains.kotlin.gradle.internal.KaptExecution时发生故障”,有人可以提出建议吗?为了完成这一点,我不得不退后几个小时的工作,这让我很伤脑筋。
GameDatabase.kt
package com.arcsoft.psncollection.data
import android.content.Context
import androidx.room.Database
import androidx.room.Room
import androidx.room.RoomDatabase
@Database(entities = [Game::class], version = 1, exportSchema = true)
abstract class GameDatabase: RoomDatabase() {
abstract fun monsterDao(): GameDao
companion object {
@Volatile
private var INSTANCE: GameDatabase? = null
fun getDatabase(context: Context): GameDatabase {
if (INSTANCE == null) {
synchronized(this) {
INSTANCE = Room.databaseBuilder(
context.applicationContext,
GameDatabase::class.java,
"games.db"
).build()
}
}
return INSTANCE!!
}
}
}
Game.kt
package com.arcsoft.psncollection.data
import androidx.room.Entity
import androidx.room.PrimaryKey
import com.arcsoft.psncollection.IMAGE_BASE_URL
@Entity(tableName = "games")
data class Game (
@PrimaryKey(autoGenerate = true)
val id: Int,
val cover: Cover,
val name: String,
val popularity: Double,
val imageFile: String,
var summary: String,
var time_to_beat: String,
var aggregated_rating: Double
)
{
val imageUrl
get() = "$IMAGE_BASE_URL/$imageFile.webp"
val thumbnailUrl
get() = "$IMAGE_BASE_URL/${imageFile}_tn.webp"
}
GameDao.kt
package com.arcsoft.psncollection.data
import androidx.room.Dao
import androidx.room.Insert
import androidx.room.Query
@Dao
interface GameDao {
@Query("SELECT * from games")
fun getAll(): List<Game>
@Insert
suspend fun insertMonster(monster: Game)
@Insert
suspend fun insertMonsters(monsters: List<Game>)
@Query("DELETE from games")
suspend fun deleteAll()
}
build.gradle
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 30
buildToolsVersion "30.0.0"
defaultConfig {
applicationId "com.arcsoft.psncollection"
minSdkVersion 24
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
dataBinding{
enabled = true
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.0'
implementation 'com.github.husnjak:IGDB-API-JVM:0.7'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.squareup.picasso:picasso:2.71828'
implementation"com.squareup.moshi:moshi-kotlin:1.8.0"
def retrofit2_version = "2.6.0"
implementation "com.squareup.retrofit2:retrofit:$retrofit2_version"
implementation "com.squareup.retrofit2:converter-moshi:$retrofit2_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit2_version"
def coroutines_version = "1.2.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
def glide_version = "4.9.0"
implementation "com.github.bumptech.glide:glide:$glide_version"
annotationProcessor "com.github.bumptech.glide:compiler:$glide_version"
def room_version = "2.1.0"
implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-ktx:$room_version"
kapt "androidx.room:room-compiler:$room_version"
}
最佳答案
您是否尝试过在Debug模式下进行编译以获取更多信息?您可以通过以下方法来执行此操作:单击Android Studio右侧栏中的 Gradle ,然后单击 Tasks / other / compileDebugKotlin 。清理和重建项目大部分时间对我有帮助。
您的数据库类似乎还不错。。。将Room与Kotlin协程一起使用,对吗?所有@Query
批注都在编译时进行了验证,因此可能是问题所在。我建议在您的Dao文件内的suspend
中添加fun getAll()
关键字,以便Room可以保证它将在后台线程上运行。
另外,我最近在Room中使用了协程,如果您想查看我的代码(在Github上),可以使用link,这不是最好的示例,但是它可以以某种方式为您提供帮助。
关于kotlin - 执行org.jetbrains.kotlin.gradle.internal.KaptExecution Room数据库时发生故障,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63195618/
由于我未知的原因,将@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
我是一名优秀的程序员,十分优秀!