Skip to content

V2.5.1

Compare
Choose a tag to compare
@greenrobot-team greenrobot-team released this 17 Feb 09:00
· 92 commits to master since this release
  • Support Android Gradle Plugin 3.6.0. #817

  • Support for incremental annotation processing. #620
    It is off by default. To turn it on set objectbox.incremental to true in build.gradle:

    android {
        defaultConfig {
            javaCompileOptions {
                annotationProcessorOptions {
                    arguments = [ "objectbox.incremental" : "true" ]
                }
            }
        }
    }

https://docs.objectbox.io/#v-2-5-1-2020-02-10