Skip to content

Commit

Permalink
Version 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielTavernini committed May 30, 2020
1 parent 48ef6ef commit 300fb90
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
distributionSha256Sum=027fdd265d277bae65a0d349b6b8da02135b0b8e14ba891e26281fa877fe37a2
4 changes: 2 additions & 2 deletions lib/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class Parser {
cD.criticalCases = parseInteger(row[19 + offset]);
cD.casesPerMln = parseDouble(row[21 + offset]);
cD.deathsPerMln = parseDouble(row[23 + offset]);
cD.totalTests = parseInteger(row[27 + offset]);
cD.testsPerMln = parseInteger(row[25 + offset]);
cD.totalTests = parseInteger(row[25 + offset]);
cD.testsPerMln = parseInteger(row[27 + offset]);
cD.link = link;
return cD;
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: A mobile app developed with Flutter to view Covid19 statistics.
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.4.0+5
version: 1.5.0+6

environment:
sdk: ">=2.2.2 <3.0.0"
Expand Down
Binary file modified repo_files/app-release.apk
Binary file not shown.

0 comments on commit 300fb90

Please sign in to comment.