diff --git a/benchmarks/androidApp/build.gradle.kts b/benchmarks/androidApp/build.gradle.kts index 2d3a387568..b3356b5986 100644 --- a/benchmarks/androidApp/build.gradle.kts +++ b/benchmarks/androidApp/build.gradle.kts @@ -47,7 +47,7 @@ android { } dependencies { - androidTestImplementation("io.realm.kotlin:library-sync:${Realm.version}") + androidTestImplementation("io.realm.kotlin:library-base:${Realm.version}") androidTestImplementation("androidx.test:runner:${Versions.androidxTest}") androidTestImplementation("androidx.test.ext:junit:${Versions.androidxJunit}") androidTestImplementation("junit:junit:${Versions.junit}") diff --git a/benchmarks/jvmApp/build.gradle.kts b/benchmarks/jvmApp/build.gradle.kts index 3244a5ee05..3d36f17cf8 100644 --- a/benchmarks/jvmApp/build.gradle.kts +++ b/benchmarks/jvmApp/build.gradle.kts @@ -6,7 +6,7 @@ apply(plugin = "kotlin") dependencies { jmh(project(":shared")) - jmh("io.realm.kotlin:library-sync:${Realm.version}") + jmh("io.realm.kotlin:library-base:${Realm.version}") jmh("org.openjdk.jmh:jmh-core:${Versions.jmh}") jmh("org.openjdk.jmh:jmh-generator-annprocess:${Versions.jmh}") } diff --git a/benchmarks/shared/build.gradle.kts b/benchmarks/shared/build.gradle.kts index 6fda4e66dd..fe13d1dfd3 100644 --- a/benchmarks/shared/build.gradle.kts +++ b/benchmarks/shared/build.gradle.kts @@ -28,7 +28,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - implementation("io.realm.kotlin:library-sync:${Realm.version}") + implementation("io.realm.kotlin:library-base:${Realm.version}") } } val androidMain by getting diff --git a/examples/realm-java-compatibility/app/build.gradle b/examples/realm-java-compatibility/app/build.gradle index da72b4e451..3225957d63 100644 --- a/examples/realm-java-compatibility/app/build.gradle +++ b/examples/realm-java-compatibility/app/build.gradle @@ -62,7 +62,7 @@ dependencies { implementation 'com.google.android.material:material:1.6.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.3' - implementation "io.realm.kotlin:library-sync:${Realm.version}" + implementation "io.realm.kotlin:library-base:${Realm.version}" testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3'