reactnative Realm Android 关联不上realm库

来源:互联网 发布:淘宝冻结卖家资金多久 编辑:程序博客网 时间:2024/05/14 16:11

首先

在settings.gradle添加

include ':realm'
project(':realm').projectDir = new File(rootProject.projectDir, '../node_modules/realm/android')

然后在app->build.gradle

dependencies {
compile project(':realm')//没有 添加
    compile fileTree(dir: "libs", include: ["*.jar"])
    compile "com.android.support:appcompat-v7:23.0.1"
    compile "com.facebook.react:react-native:+"  // From node_modules
}


0 0