我想使用realm.io为Android应用程序,但我在安装过程中遇到问题
我使用了这些步骤。我认为代码已经过时了,因为它与我的Gradle文件不匹配,但不知何故我做到了。
这是我的build.gradle (Module :app)
文件
plugins {
id 'com.android.application'
}
android {
namespace 'com.example.ig'
compileSdk 33
defaultConfig {
applicationId "com.example.ig"
minSdk 28
targetSdk 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
// for MongoDB
implementation "io.realm:realm-gradle-plugin:10.16.1"
}
字符串
我不能在这里添加这些代码
apply plugin: 'realm-android'
型
且这
realm {
syncEnabled = true
}
型
在这个阶段之后我写了这个代码和这个代码
Realm.init(this); // context, usually an Activity or Application
app = new App(new AppConfiguration.Builder(appID)
.build());
型
现在收到错误消息:
- 如何解决此错误消息?***
1条答案
按热度按时间dxxyhpgq1#
我更新了我的
build.gradle (Module :app)
文件如下,现在代码被Android Studio识别。字符串