我正在尝试建立一个使用Realm
数据库的应用程序,但是我似乎无法使其正常运行。我也禁用了Instant Run
,但这也不能解决问题。
这是我的代码文件:
应用程序级别build.gradle
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android-extensions' // <-- these two were the problem
apply plugin: 'kotlin-android' // <--
apply plugin: 'com.google.gms.google-services'
apply plugin: 'realm-android'
项目级别build.gradle
dependencies{
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.google.gms:google-services:4.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'io.realm:realm-gradle-plugin:5.8.0'
}
我的一个模型课程
public class ClothingItem extends RealmObject{
private String mItemName;
private RealmList<String> mItemTags;
....
我在其中初始化Realm的应用程序类
public void onCreate(){
super.oncreate();
Realm.init(this);
RealmConfiguration config = new RealmConfiguration.Builder()
.deleteRealmIfMigrationNeeded()
.name("MyOnlineWardrobe.realm")
.build();
Realm.setDefaultConfiguration(config);
}
答案 0 :(得分:0)
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-kapt' // <---
apply plugin: 'realm-android'