美文网首页
Schema export directory is not p

Schema export directory is not p

作者: 蘇三子 | 来源:发表于2020-09-16 13:47 被阅读0次

安卓room构建错误
Schema export directory is not provided to the annotation processor so we cannot export the schema. You can either provide room.schemaLocation annotation processor argument OR set exportSchema to false.
未向批注处理器提供架构导出目录,因此无法导出架构。
你可以提供room.schemaLocation注释处理器参数或将exportSchema设置为false

解决方法

1. 在build gradle中添加(推荐)

android {
        ...
        defaultConfig {
            ...
            javaCompileOptions {
                annotationProcessorOptions {
                    arguments = ["room.schemaLocation" : "$projectDir/schemas".toString()]
                }
            }
        }
    }

2. 在数据库注解中添加exportSchema = false(不推荐)

@Database(entities = {entity.class}, version = 4, exportSchema = false)

原因

在编译时,Room 会将数据库的架构信息导出为 JSON 文件(默认exportSchema = true导出架构)。要导出架构,请在 build.gradle 文件中设置 room.schemaLocation 注释处理器属性(设置将json存放的位置)。

我们没有设置exportSchema = false不导出架构或者没有设置架构导出的位置,所以构建错误。

参考链接

相关文章

网友评论

      本文标题:Schema export directory is not p

      本文链接:https://www.haomeiwen.com/subject/hogcyktx.html