房间持久性库:无法解析符号房间

Room Persistence Library : Cannot resolve symbol Room

我使用了具有以下 gradle 设置的 Android Studio 3.0 Beta 2

我可以搜索 RxRoom 但没有找到房间 class。按照说明 Add Components 后,我无法在 Fragment.

中使用 Room class

这个class在单独的模块中,应用程序模块不包含任何房间库依赖项。

错误在 IDE 中显示 "Cannot resolve symbol Room"。

build.gradle

apply plugin: 'com.android.library'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"


    defaultConfig {
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        javaCompileOptions {
            annotationProcessorOptions {
                arguments = ["room.schemaLocation":
                                     "$projectDir/schemas".toString()]
            }
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    compileOptions {
        targetCompatibility 1.8
        sourceCompatibility 1.8
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.0.2'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:design:26.0.2'
    implementation 'com.android.support:support-v4:26.0.2'
    implementation 'com.android.support:recyclerview-v7:26.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation "android.arch.persistence.room:runtime:1.0.0-alpha9"
    annotationProcessor "android.arch.persistence.room:compiler:1.0.0-alpha9"
    testImplementation "android.arch.persistence.room:testing:1.0.0-alpha9"
    implementation "android.arch.persistence.room:rxjava2:1.0.0-alpha9"
}

已更新 我尝试先将房间库降级到 alpha8,然后房间 class 现在又回来了。我不知道为什么这个 class 在 alpha9 中消失了,但至少它是解决方法。

请在 build.gradle

中将所有 Room 依赖项从 implementation 更改为 api

经过一周的试用,我发现我可以 运行 apk 即使我有编译时错误。我尝试通过以下方式解决编译错误。

改变

annotationProcessor "android.arch.persistence.room:compiler:1.0.0-alpha9"

 implementation "android.arch.persistence.room:compiler:1.0.0-alpha9"

并添加以下内容Disable the error check from Migrate to Android Plugin for Gradle 3.0

javaCompileOptions {
    annotationProcessorOptions {
        includeCompileClasspath = true
    }
}

如果您在房间实体 classes 上收到错误 "Cannot resolve symbol",请尝试这个 hack:添加一个虚拟 属性 到你的 class。然后清理并重建您的项目。这应该刷新实体。然后删除假人。

示例:

@Query("select * from my_entity where name = :name") --> Cannot resolve symbol name...
MyEntity getMyEntityByName(String name);  


@Entity(indices = {@Index(value = {"name"})}, tableName = "my_entity")
public class MyEntity {
    other properties        ....

    public int dummy; --> add and remove this