Skip to content

Commit 2ed3889

Browse files
Update Android library [4.3.1 -> 5.0.1]
Includes C API 5.0.0 and database 5.0.0-2025-09-27
1 parent 96c5c94 commit 2ed3889

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

dev-doc/updating-c-library.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@ Includes database 5.0.0-2025-09-27
3737
For the Flutter plugins on Android ([view releases](https://github.com/objectbox/objectbox-java/releases)):
3838

3939
```bash
40-
./tool/set-android-version.sh 4.3.1
40+
./tool/set-android-version.sh 5.0.1
4141
```
4242

4343
```text
44-
* Update ObjectBox database for Flutter Android apps to 4.3.1.
44+
* Update ObjectBox database for Flutter Android apps to 5.0.1.
4545
If your project is [using Admin](https://docs.objectbox.io/data-browser#admin-for-android), make
46-
sure to update to `io.objectbox:objectbox-android-objectbrowser:4.3.1` in `android/app/build.gradle`.
46+
sure to update to `io.objectbox:objectbox-android-objectbrowser:5.0.1` in `android/app/build.gradle`.
4747
```
4848

4949
```text
50-
Update Android library [4.3.0 -> 4.3.1]
50+
Update Android library [4.3.1 -> 5.0.1]
5151
52-
Includes C API 4.3.1 and database 4.3.1-2025-08-02
52+
Includes C API 5.0.0 and database 5.0.0-2025-09-27
5353
```
5454

5555
Note: the embedded C API and ObjectBox version can be looked up

flutter_libs/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ android {
5050
// ObjectBox Android library that includes an ObjectBox C library version compatible with
5151
// the C API binding of the ObjectBox Dart package.
5252
// https://central.sonatype.com/search?q=g:io.objectbox%20objectbox-android
53-
implementation "io.objectbox:objectbox-android:4.3.1"
53+
implementation "io.objectbox:objectbox-android:5.0.1"
5454
}
5555
}

objectbox/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
* ToOne relations: when deleting an object with an ID larger than the maximum 32-bit unsigned
1616
integer (`4_294_967_295`) that is used as the target object of a ToOne, correctly re-set the
1717
target ID of the ToOne to `0`. [#740](https://github.com/objectbox/objectbox-dart/issues/740)
18+
* Update ObjectBox database for Flutter Android apps to 5.0.1.
19+
If your project is [using Admin](https://docs.objectbox.io/data-browser#admin-for-android), make
20+
sure to update to `io.objectbox:objectbox-android-objectbrowser:5.0.1` in `android/app/build.gradle`.
1821

1922
## 4.3.1 (2025-09-02)
2023

objectbox/example/flutter/objectbox_demo_relations/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,5 @@ dependencies {
8383
// Add the Android library with ObjectBox Admin only for debug builds.
8484
// Note: when the objectbox package updates, check if the Android
8585
// library below needs to be updated as well.
86-
debugImplementation("io.objectbox:objectbox-android-objectbrowser:4.3.1")
86+
debugImplementation("io.objectbox:objectbox-android-objectbrowser:5.0.1")
8787
}

sync_flutter_libs/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ android {
5050
// ObjectBox Android library that includes an ObjectBox C library version compatible with
5151
// the C API binding of the ObjectBox Dart package.
5252
// https://central.sonatype.com/search?q=g:io.objectbox%20objectbox-sync-android
53-
implementation "io.objectbox:objectbox-sync-android:4.3.1"
53+
implementation "io.objectbox:objectbox-sync-android:5.0.1"
5454
}
5555
}

0 commit comments

Comments
 (0)