Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwlange committed Nov 27, 2018
1 parent 654398b commit 0356a26
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions LiquidCoreAndroid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,13 +332,9 @@ public class MainActivity extends AppCompatActivity {
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
URI uri = MicroService.DevServer();
MicroService service = new MicroService(MainActivity.this, uri, startListener);
service.start();
} catch (URISyntaxException e) {
e.printStackTrace();
}
URI uri = MicroService.DevServer();
MicroService service = new MicroService(MainActivity.this, uri, startListener);
service.start();
}
});
}
Expand Down

0 comments on commit 0356a26

Please sign in to comment.