android – 如何安装域作为gradle依赖?

我对领域完全陌生.我想在我的android项目中使用realm db.我已经通过官方Realm documentation.我需要在我的android项目中设置领域.为此,我已将gradle依赖性添加为

    buildscript {
            repositories {
                     jcenter()
                         }
            dependencies {
                classpath "io.realm:realm-gradle-plugin:0.88.2"
           }
       }
 apply plugin: 'realm-android'

这是他们在文档中给出的.但这对我不起作用.它给出了错误,说没有找到id为’realm-android’的插件.

这是我的build.gradle文件

apply plugin: 'com.android.application'
apply plugin: 'realm-android'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "com.db.realmsample"
    minSdkVersion 14
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath "io.realm:realm-gradle-plugin:0.88.2"
    }
  }

 }

 dependencies {
  compile fileTree(dir: 'libs', include: ['*.jar'])
  testCompile 'junit:junit:4.12'
  compile 'com.android.support:appcompat-v7:23.2.1'
  }

我的配置是否正确?

解决方法:

将buildscript移动到主build.gradle文件(Project),它不应该在build.gradle(module:app)中

buildscript {
repositories {
    jcenter()
  }
dependencies {
     classpath "io.realm:realm-gradle-plugin:<realm version>"
   }
 }

这应该转到main build.gradle

上一篇:java-保存领域关系不会持久化它们


下一篇:android – 如何将RealmResults转换为List