You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
35
+
36
+
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:
The no-op version of Realm Browser has empty functions which do nothing. It is not necessary to include this,
38
-
but you may if you do not want to access Realm Browser in release mode.
39
-
40
-
> ‼️ v0.0.8 is not working with the newest realm release. Use the develop snapshot version `compile "com.github.jonasrottmann.realm-browser:realm-browser:develop-SNAPSHOT"` meanwhile.
41
-
42
-
Realm Browser depends on Android support libraries, so you might want to exclude them from your project
43
-
if they conflict with the ones you include:
61
+
If you want to see all the tables in a database call:
To display a notification from which the Realm Browser can be started:
85
+
For a full working example check out the [sample app](https://github.com/jonasrottmann/realm-browser/blob/release/app/src/main/java/de/jonasrottmann/realmsample/MainActivity.java).
83
86
84
-
```
85
-
RealmBrowser.showRealmFilesNotification(context);
86
-
```
87
+
### TODO
88
+
What's on the roadmap... 🚀
89
+
-[ ] Tests
90
+
-[ ] Be able to edit/create objects
91
+
-[ ] Bidirectional scrolling in the browser window
92
+
-[ ] Clean up
93
+
-[ ] Nice architecture
94
+
-[ ] Live reload the browser if updates happen in the background
95
+
-[ ] Javadoc 📚
87
96
88
-
For a full working example check out the [sample app](https://github.com/jonasrottmann/realm-browser/blob/release/app/src/main/java/de/jonasrottmann/realmsample/MainActivity.java).
97
+
### Other browsers
98
+
99
+
If you're looking for a Realm browser for your iOS Swift projects check out [bearjaw/RBSRealmBrowser](https://github.com/bearjaw/RBSRealmBrowser) 🎉
0 commit comments