-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add sample app demonstrating offline mode #1926
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Conflicts: realm/gradle/wrapper/gradle-wrapper.properties realm/realm-library/src/main/java/io/realm/BaseRealm.java realm/realm-library/src/main/java/io/realm/RealmObject.java realm/realm-library/src/main/java/io/realm/RealmResults.java
Conflicts: realm/gradle/wrapper/gradle-wrapper.properties realm/realm-library/src/main/java/io/realm/BaseRealm.java
Conflicts: realm/realm-library/build.gradle
Conflicts: changelog.txt examples/gradle/wrapper/gradle-wrapper.properties realm/realm-library/src/main/java/io/realm/RealmQuery.java
cmelchior
force-pushed
the
feature-rxjava
branch
from
December 17, 2015 11:02
c54bca1
to
d6db860
Compare
Add RxJava support
Rename the Gradle plugin to 'realm-android'
Conflicts: examples/settings.gradle realm/realm-jni/src/io_realm_internal_TableQuery.h realm/realm-library/src/androidTest/java/io/realm/RxJavaTests.java realm/realm-library/src/main/java/io/realm/Realm.java realm/realm-library/src/main/java/io/realm/RealmObject.java realm/realm-library/src/main/java/io/realm/rx/RealmObservableFactory.java realm/realm-library/src/main/java/io/realm/rx/RxObservableFactory.java
This PR should be against master instead. Closing |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Sample app demonstrating usage of Realm in a app that should work offline.
It uses the New York Times API to show a list of news items. Each item will be marked read after being visible for 2 seconds.
TODO