Skip to content

Commit

Permalink
Use built-in database in sample app
Browse files Browse the repository at this point in the history
  • Loading branch information
ocram committed Apr 9, 2016
1 parent 180b9cf commit 4307590
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected void onCreate(Bundle savedInstanceState) {
Meteor.setLoggingEnabled(true);

// create a new instance
mMeteor = new Meteor(this, "ws://android-ddp-meteor.meteor.com/websocket");
mMeteor = new Meteor(this, "ws://android-ddp-meteor.meteor.com/websocket", new InMemoryDatabase());

// register the callback that will handle events and receive messages
mMeteor.addCallback(this);
Expand Down

0 comments on commit 4307590

Please sign in to comment.