- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
错误:[MissingType]:元素 'xxxxx.AppDatabase.room' 引用了不存在的类型
当我尝试编译我的代码时,我得到了标题中提到的错误。看来我的 Room 有问题,导致了这种情况。 Kotlin kapt 给出了这个错误。我该如何解决?
项目级 Gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.5.31'
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
classpath 'com.google.gms:google-services:4.3.10'
def nav_version = "2.3.5"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url "https://maven.google.com" } // Google's Maven repository
maven { url 'https://developer.huawei.com/repo/' } // HUAWEI Maven repository
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
应用级 Gradle
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-kapt'
}
android {
compileSdkVersion 31
buildToolsVersion "30.0.0"
flavorDimensions "default"
viewBinding {
enabled = true
}
defaultConfig {
applicationId "com.ege.altaga"
minSdkVersion 21
targetSdkVersion 31
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
storeFile file("key.keystore.jks")
storePassword 'android'
keyAlias 'altaga'
keyPassword 'android'
}
}
buildTypes {
debug {
minifyEnabled false
shrinkResources false
debuggable true
aaptOptions.cruncherEnabled = false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
// resValue("string", "google_device_verification_api_key", "AIzaSyDNLDM08-vLp9uszlNJH1SJW1y7oUqsA-U")
}
release {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
minifyEnabled true
shrinkResources false
debuggable false
signingConfig signingConfigs.release
zipAlignEnabled true
// resValue("string", "google_device_verification_api_key", "AIzaSyDNLDM08-vLp9uszlNJH1SJW1y7oUqsA-U")
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
// coreLibraryDesugaringEnabled true
}
configurations {
cleanedAnnotations
compile.exclude group: 'org.jetbrains', module: 'annotations'
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.4.32"
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
implementation 'com.github.bumptech.glide:glide:4.12.0'
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'io.reactivex:rxjava:1.1.6'
implementation 'io.reactivex:rxandroid:1.2.1'
implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0'
kapt 'com.github.bumptech.glide:compiler:4.12.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0'
def room_version = "2.4.0-beta02"
implementation "androidx.room:room-ktx:$room_version"
kapt "androidx.room:room-compiler:$room_version"
// annotationProcessor "androidx.room:room-compiler:$room_version"
// optional - RxJava2 support for Room
implementation "androidx.room:room-rxjava2:$room_version"
}
应用数据库类
package com.ege.altaga.data
import android.content.Context
import androidx.room.Database
import androidx.room.Room
import androidx.room.RoomDatabase
import com.ege.altaga.data.database.player.PlayerDAO
import com.ege.altaga.data.database.player.PlayerEntity
import com.ege.altaga.data.database.square.SquareDAO
import com.ege.altaga.data.database.square.SquareEntity
@Database(entities = [(PlayerEntity::class),(SquareEntity::class)],version = 1)
abstract class AltagaDB : RoomDatabase() {
abstract fun playerDAO() : PlayerDAO<PlayerEntity>
abstract fun squareDAO() : SquareDAO<SquareEntity>
companion object {
@Volatile var instance: AltagaDB? = null
fun getDatabase(context: Context): AltagaDB =
instance ?: synchronized(this) { instance ?: buildDatabase(context.applicationContext).also { instance = it } }
private fun buildDatabase(appContext: Context) =
Room.databaseBuilder(appContext, AltagaDB::class.java, "AltagaDB")
.fallbackToDestructiveMigration()
.build()
}
}
最佳答案
我在使用带有 kotlin v1.5.31 的房间 v2.4.1 时遇到了同样的问题。解决方案是将 kotlin 版本更改为 1.6.0。
关于android - 错误 : [MissingType]: Element 'xxxxx.AppDatabase.room' references a type that is not present,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70216485/
我有一个想法:(可能太完整了) 我想知道是否可以 substring(1) 然后使用 .toUpperCase()字符串 然后使用 getLength() 获取长度.toLowerCase() 字符串
当我单击 map Activity 上的后退按钮时,应用程序崩溃。添加 moveTaskToBack(true);在 onBackPressed() 中不起作用。以下是日志猫: ---------崩溃
我尝试创建它,但它似乎无法正常工作 (/^ [A-Z]\d{5} \- [A-Z]\d{5} \- [A-Z]\d{3} \- [A-Z]\d{2} $/)) 最佳答案 [A-Z]\d{5} 表示:从
你好我有一个主表 BASECOMPANYDATA,其中 BaseCompanyDataID 作为 PK。这是继承自2 个其他表 CUSTOMERS & PRODUCTCOMPANIES。现在我有了 C
这个问题已经有答案了: Get the data received in a Flask request (24 个回答) 已关闭去年。 flask.request.form["xxx"] 之间有什么
我试图在这里运行代码 -- http://code.google.com/p/android-market-api/wiki/HowDownloadApps--,并将此代码放在 Tester.java
我有两个格式为 XXXX.csv.gz_1_2.tar 和 XXXX.csv.gz_2_2.tar 的文件,我的目标是合并这些文件以便能够按顺序解压缩完整文件获取 csv 文件。 你能帮帮我吗? 我尝
这是我每次运行应用程序时的错误: E/AndroidRuntime: FATAL EXCEPTION: main java.lang.RuntimeException: Unable to i
在 Azure 网站上进行身份验证时,我遇到了回复 URL 的问题。正常登录时一切正常,但使用其他页面登录时会生成“回复 URL”错误。 例如,使用“https://xxxxx.azurewebsit
您好,我正在通过 WSDL 将 Java Web 服务加载到 Delphi 7。当我从 Delphi 调用 Web 服务时,出现以下错误。我被困在这里没有任何线索。 'Unmarshalling Er
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 8 年前。 Improve t
我声明一个数据 让数据 = {} 然后我用promise调用webservice getUserData().then((res)=>{ this.setState({ data :
所以我要加入 TAF(集群故障转移)处理到一些数据库代码中,最后我会得到类似的代码块,如下所示: try: ... some database code...
当尝试重新设计合并排序程序时,我在函数中实现了 match with 语句。 let rec merge (array : int[]) (chunkA : int[]) (chunkB : int[
为什么这两种情况下PuTTY中tmux的分割线显示不同(xxxxx,qqqqqq)?如果我没有设置 PuTTY 任何东西(默认“使用字体编码”), Pane 的分割线显示如下: 但是不能正确显示中文单
我想用“XXXX”替换特定的字符串值。问题是模式非常动态,它在输入数据中没有固定模式。 我的输入数据 https://internetbanking.abc.co.uk/personal/logon/
这是我的代码: 但是我得到了一个黑色的边框。当我插入“Red”而不是 #-code 时
在windows 2003下,在运行web应用程序的时候出现一下错误: 服务器无法处理请求,-->对路径“C:/temp/mytest.txt”的访问拒绝 说明: 执行当前
我有一个工作流应用程序,当我尝试使用 ExternalDataExchangeService 调用事件时会引发错误。 在状态持久性存储中找不到 ID 为“866568ab-ca1b-4404-a2f1
我在设备中运行时收到此错误,请确实需要全面的帮助来解决此问题; Couldn't register com.XXXXX.deviceapp with the bootstrap server. Err
我是一名优秀的程序员,十分优秀!