admin管理员组文章数量:1345047
I am working on an Android project using Room Database with Kotlin Symbol Processing (KSP), but I keep getting the following error when building my project:
[ksp] [MissingType]: Element 'com.example.notesapp.database.NoteDatabase' references a type that is not present
I have already checked my NoteDatabase and NoteDao, and they seem correctly implemented.
My Setup
NoteDatabase.ktpackage com.example.notesapp.database
import android.content.Context
import androidx.room.Database
import androidx.room.Room
import androidx.room.RoomDatabase
import com.example.notesapp.BuildConfig
import com.example.notesapp.model.Note
@Database(entities = [Note::class], version = BuildConfig.VERSION_CODE, exportSchema = false)
abstract class NoteDatabase : RoomDatabase() {
abstract fun getNoteDao(): NoteDao
companion object {
@Volatile
private var instance: NoteDatabase? = null
fun getInstance(context: Context): NoteDatabase {
return instance ?: synchronized(this) {
instance ?: createDatabase(context).also { instance = it }
}
}
private fun createDatabase(context: Context) =
Room.databaseBuilder(
context.applicationContext,
NoteDatabase::class.java,
"note_db"
)
.build()
}
}
NoteDao
package com.example.notesapp.database
import androidx.lifecycle.LiveData
import androidx.room.Dao
import androidx.room.Delete
import androidx.room.Insert
import androidx.room.OnConflictStrategy
import androidx.room.Query
import androidx.room.Update
import com.example.notesapp.model.Note
@Dao
interface NoteDao {
@Insert(onConflict = OnConflictStrategy.REPLACE)
suspend fun insertNote(note: Note)
@Update
suspend fun updateNote(note: Note)
@Delete
suspend fun deleteNote(note: Note)
@Query("SELECT * FROM NOTES ORDER BY id DESC")
fun getAllNotes(): LiveData<List<Note>>
@Query("SELECT * FROM notes WHERE noteTitle LIKE '%' || :query || '%' OR noteDesc LIKE '%' || :query || '%'")
fun searchNote(query: String?): LiveData<List<Note>>
}
Thanks for help
本文标签:
版权声明:本文标题:android - How to fix error >[ksp] [MissingType]: Element 'com.example.notesapp.database.NoteDatabase' ref 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743804254a2541880.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论