Skip to content

Commit b341c14

Browse files
committed
Merge branch 'develop' of github.com:jonasrottmann/realm-browser into develop
2 parents 6c6185b + acd011d commit b341c14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ The project is available via [JitPack.io](https://jitpack.io/#jonasrottmann/real
2727
2. **Add the dependency**
2828
```
2929
dependencies {
30-
debugCompile 'com.github.jonasrottmann.realm-browser:realm-browser:0.0.10'
31-
testCompile 'com.github.jonasrottmann.realm-browser:realm-browser-no-op:0.0.10'
32-
releaseCompile 'com.github.jonasrottmann.realm-browser:realm-browser-no-op:0.0.10'
30+
debugCompile 'com.github.jonasrottmann.realm-browser:realm-browser:0.0.11'
31+
testCompile 'com.github.jonasrottmann.realm-browser:realm-browser-no-op:0.0.11'
32+
releaseCompile 'com.github.jonasrottmann.realm-browser:realm-browser-no-op:0.0.11'
3333
}
3434
```
3535
The no-op version of Realm Browser has empty functions which do nothing. It is not necessary to include this, but you may if you do not want to access Realm Browser in release mode. If you want to use a build of the newest development use `compile "com.github.jonasrottmann.realm-browser:realm-browser:develop-SNAPSHOT"` instead.
3636

3737
3. Exclude support libraries (maybe optional): Realm Browser depends on Android support libraries, so you might want to exclude them from your project if they conflict with the ones you include:
3838
```
3939
depedencies {
40-
debugCompile ('com.github.jonasrottmann.realm-browser:realm-browser:0.0.10') {
40+
debugCompile ('com.github.jonasrottmann.realm-browser:realm-browser:0.0.11') {
4141
exclude group: 'com.android.support';
4242
}
4343
}

0 commit comments

Comments
 (0)