<!-- If you are looking for support, please check out our documentation: - https://docs.objectbox.io - https://docs.objectbox.io/faq - https://docs.objectbox.io/troubleshooting --> ### Is there an existing issue? - [x] I have searched [existing issues](https://github.com/objectbox/objectbox-java/issues) ### Build info - ObjectBox version: 4.3.1 - OS: [Android 7 ] - Device/ABI/architecture: [ arm64-v8a | x86-64 ] ### Steps to reproduce Run the provided sample project, or refer to the Java code attached in this post for a minimal example. ### Expected behavior The object should be stored without error, regardless of list size or platform version. ### Actual behavior Application crashes fatally during the operation on devices running Android API level 25 or lower. ### Code Run the provided sample project, or refer to the Java code attached in this post for a minimal example. [objectbox-bug-upload.zip](https://github.com/user-attachments/files/21905292/objectbox-bug-upload.zip) <!-- Please provide a minimal code example. Things you maybe should also include: - the entity class - the Gradle build script You can also create a public GitHub repository and link to it below. Please do not upload screenshots of text, use code blocks like below instead. Add any other context about the problem: - Is there anything special about your app? - May transactions or multi-threading play a role? - Did you find any workarounds to prevent the issue? --> <details><summary>Code</summary> ```java @Entity data class Data ( @Id var _id: Long = 0, var ids: List<String> = listOf(), ) box.put( Data( ids = IntRange(0,512).map { //crash on API 25, < 400 works "$it" } ) ) ``` </details> ### Logs, stack traces _TODO Add relevant logs, a stack trace or crash report._ <!-- - For build issues, use `--stacktrace` to run the failing Gradle task. E.g. ./gradlew build --stacktrace - For runtime errors, check log output (e.g. Logcat on Android). - For Java/Kotlin exceptions include the full stack trace. - For native crashes on Android, include Logcat output starting from the *** *** *** line. Note that crash reporting tools like Crashlytics may hide this line. - For native crashes on JVM, include the hs_err_pidXXXX.log file. - Also check logs before the error. ObjectBox logs are tagged with e.g. Box. --> <details><summary>Logs</summary> ```console ``` </details>