Skip to content
This repository has been archived by the owner on Sep 10, 2019. It is now read-only.

Commit

Permalink
Merge pull request #45 from dkpalmer/realm-v0.90.0
Browse files Browse the repository at this point in the history
Bump realm to 0.90.0, fix compat w/ RealmChangeListener
  • Loading branch information
thorbenprimke committed May 6, 2016
2 parents 966f852 + 8fcd245 commit a49f4d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'

classpath "io.realm:realm-gradle-plugin:0.89.1"
classpath "io.realm:realm-gradle-plugin:0.90.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0-rc1'

classpath "io.realm:realm-gradle-plugin:0.89.1"
classpath "io.realm:realm-gradle-plugin:0.90.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ private void updateRowWrappers() {
private RealmChangeListener getRealmChangeListener() {
return new RealmChangeListener() {
@Override
public void onChange() {
public void onChange(Object element) {
if (animateResults && ids != null && !ids.isEmpty()) {
updateRowWrappers();
List newIds = getIdsOfRealmResults();
Expand Down

0 comments on commit a49f4d9

Please sign in to comment.