Skip to content

Commit

Permalink
Update MainActivity.java
Browse files Browse the repository at this point in the history
  • Loading branch information
dharmeshmp committed Mar 5, 2016
1 parent 85c0532 commit 570d516
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/com/initfusion/volleydmp/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public void onResult(Object result, String msg) {
}
};

JsonRequest.with(context).load("http://52.35.166.109/bairows/api/shared?prcid=GETREQPEN&Param=10")
JsonRequest.with(context).load("url")
.execute();

JsonRequest.with(context).load("http://52.35.166.109/bairows/api/shared?prcid=SIGNIN&[email protected]|123")
JsonRequest.with(context).load("url")
.execute();

JsonRequest.with(context)
.load("http://52.35.166.109/bairows/api/shared?prcid=SIGNIN&[email protected]|123")
.load("url")
.setCallback(responseListener)
.setResponseClass(LoginResponse.class)
.execute();
Expand Down

0 comments on commit 570d516

Please sign in to comment.