File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11# ObjectBox Java (Kotlin, Android)
22ObjectBox is a superfast object-oriented database with strong relation support.
33
4- ** Latest version: [ 1.0.0 (2017/09/04 )] ( http://objectbox.io/changelog ) **
4+ ** Latest version: [ 1.0.1 (2017/09/10 )] ( http://objectbox.io/changelog ) **
55
66Demo code using ObjectBox:
77
88 Playlist playlist = new Playlist("My Favorties");
9- playlist.songs.add(new Song("Lalala");
10- playlist.songs.add(new Song("Lololo");
9+ playlist.songs.add(new Song("Lalala")) ;
10+ playlist.songs.add(new Song("Lololo")) ;
1111 box.put(playlist);
1212
1313Gradle setup
1414------------
1515Add this to your root build.gradle (project level):
1616
1717 buildscript {
18- ext.objectboxVersion = '1.0.0 '
18+ ext.objectboxVersion = '1.0.1 '
1919 repositories {
2020 maven { url "http://objectbox.net/beta-repo/" }
2121 }
Original file line number Diff line number Diff line change 11// Just too many sub projects, so each can reference rootProject.version
2- version = ' 1.0.1-SNAPSHOT '
2+ version = ' 1.0.1'
33
44buildscript {
55 ext {
You can’t perform that action at this time.
0 commit comments