Java and Kotlin examples for ObjectBox (GitHub), the superfast object-oriented database.
For examples in other languages, see the GitHub repository for that language.
- android-app-kotlin: a note taking app that shows how to define the data model, indexes and relations, create a store, put and get data, use Admin UI and create unit tests.
- android-app: a more basic variant of the above written in Java.
- java-main and kotlin-main: a note taking command-line application that shows how to define the data model, create a store and put and get data.
- java-main-maven: the above app but using a Maven project (we recommend to use Gradle).
- java-main-vector-search: a cities and coordinates command-line application that shows how to do on-device ANN vector search.
Using Sync
- android-app-sync-kotlin: a task list app that shows how to define a data model for Sync and configure a Sync client.
- android-app-sync: the above app written in Java.
- java-main-sync: A console-based Java application demonstrating Sync features.
- android-app-relations: shows how to use all types of available relations.
- android-app-arch: shows how to use ObjectBoxLiveData with ViewModel and ObjectBoxDataSource with the Paging library.
- android-app-multimodule: shows how to use a separate database in each feature module.
- android-app-multiprocess: shows how to use ObjectBox from a different process.
- android-app-daocompat: shows how to use the DAOcompat compatibility layer to help migrate from greenDAO.
- java-performance: a command-line application that runs performance tests with ObjectBox.
When you open the project in an IDE like Android Studio for the first time, it will complain that it does not find the class MyObjectBox
.
This is expected because this class is generated during build time.
Thus, once you build the project, everything should be fine.
If you are looking for help with how to use ObjectBox see our documentation.
If you found an issue or have feedback about these examples feel free to submit an issue for objectbox-java.
Copyright 2017-2024 ObjectBox Ltd. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.