Skip to content

Commit

Permalink
fix explorer API bug, new icons, b293
Browse files Browse the repository at this point in the history
  • Loading branch information
MIPPL committed Mar 29, 2021
1 parent c97aa3d commit f3ad844
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId = 'com.wagerrwallet'
minSdkVersion 23
targetSdkVersion 29
versionCode 292
versionName "292"
versionCode 293
versionName "293"
multiDexEnabled true

// Similar to other properties in the defaultConfig block,
Expand Down
8 changes: 4 additions & 4 deletions app/src/main/java/com/platform/entities/TxExplorerInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ public void PopulateFromJsonObject(JSONObject o) {
if (jsonLeg.has("homeTeam")) leg.homeTeam = jsonLeg.getString("homeTeam");
if (jsonLeg.has("awayTeam")) leg.awayTeam= jsonLeg.getString("awayTeam");
leg.market = o.getString("market");
if (o.has("homeScore")) leg.homeScore = o.getInt("homeScore");
if (o.has("awayScore")) leg.awayScore = o.getInt("awayScore");
if (o.has("betResult")) leg.betResult = o.getString("betResult");
if (o.has("outcome")) leg.outcome = o.getInt("outcome");
if (jsonLeg.has("homeScore")) leg.homeScore = jsonLeg.getInt("homeScore");
if (jsonLeg.has("awayScore")) leg.awayScore = jsonLeg.getInt("awayScore");
if (jsonLeg.has("betResult")) leg.betResult = jsonLeg.getString("betResult");
if (jsonLeg.has("outcome")) leg.outcome = jsonLeg.getInt("outcome");
legs.add(leg);
}
}
Expand Down
Binary file modified app/src/main/res/mipmap-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/mipmap-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/mipmap-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f3ad844

Please sign in to comment.