File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44ObjectBox is a superfast object-oriented database with strong relation support.
55ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
66
7- ** Latest version: [ 2.4.0 RC (2019/10/03)] ( https://objectbox.io/changelog ) **
8-
9- ** Latest stable version: [ 2.3.4 (2019/03/19)] ( https://objectbox.io/changelog ) **
7+ ** Latest version: [ 2.4.0 (2019/10/15)] ( https://objectbox.io/changelog ) **
108
119Demo code using ObjectBox:
1210
@@ -32,7 +30,7 @@ Add this to your root build.gradle (project level):
3230
3331``` groovy
3432buildscript {
35- ext.objectboxVersion = '2.3.4 '
33+ ext.objectboxVersion = '2.4.0 '
3634 dependencies {
3735 classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
3836 }
Original file line number Diff line number Diff line change @@ -6,14 +6,16 @@ buildscript {
66 // version post fix: '-<value>' or '' if not defined; e.g. used by CI to pass in branch name
77 def versionPostFixValue = project. findProperty(' versionPostFix' )
88 def versionPostFix = versionPostFixValue ? " -$versionPostFixValue " : ' '
9- ob_version = " 2.4.0$versionPostFix -SNAPSHOT"
9+ // ob_version = "2.4.0$versionPostFix-SNAPSHOT"
10+ ob_version = " 2.4.0"
1011 println " ObjectBox Java version $ob_version "
1112
1213 ob_expected_version = project. hasProperty(' expectedVersion' ) ? project. property(' expectedVersion' ) : ' UNDEFINED'
1314
1415 // Core version for tests
1516 // Be careful to diverge here; easy to forget and hard to find JNI problems
16- ob_native_version = " 2.4.0-dev-SNAPSHOT"
17+ // ob_native_version = "2.4.0-dev-SNAPSHOT"
18+ ob_native_version = " 2.4.0"
1719
1820 def osName = System . getProperty(" os.name" ). toLowerCase()
1921 objectboxPlatform = osName. contains(' linux' ) ? ' linux'
You can’t perform that action at this time.
0 commit comments