將 Realm 新增到你的專案中
將以下依賴項新增到專案級別 build.gradle
檔案中。
dependencies {
classpath "io.realm:realm-gradle-plugin:3.1.2"
}
在應用級別 build.gradle
檔案的頂部新增以下內容。
apply plugin: 'realm-android'
完成一個 gradle 同步,你現在已經新增了 Realm 作為專案的依賴項!
在使用之前,Realm 需要從 2.0.0 開始初始呼叫。你可以在 Application
類或第一個 Activity 的 onCreate
方法中執行此操作。
Realm.init(this); // added in Realm 2.0.0
Realm.setDefaultConfiguration(new RealmConfiguration.Builder().build());