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 1
1
# ObjectBox Java (Kotlin, Android)
2
2
ObjectBox is a superfast object-oriented database with strong relation support.
3
3
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 ) **
5
5
6
6
Demo code using ObjectBox:
7
7
8
8
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")) ;
11
11
box.put(playlist);
12
12
13
13
Gradle setup
14
14
------------
15
15
Add this to your root build.gradle (project level):
16
16
17
17
buildscript {
18
- ext.objectboxVersion = '1.0.0 '
18
+ ext.objectboxVersion = '1.0.1 '
19
19
repositories {
20
20
maven { url "http://objectbox.net/beta-repo/" }
21
21
}
Original file line number Diff line number Diff line change 1
1
// Just too many sub projects, so each can reference rootProject.version
2
- version = ' 1.0.1-SNAPSHOT '
2
+ version = ' 1.0.1'
3
3
4
4
buildscript {
5
5
ext {
You can’t perform that action at this time.
0 commit comments