Skip to content

Commit

Permalink
Changed version to 1.2
Browse files Browse the repository at this point in the history
Fixed bug that only exports one bottle out of two in CSV (i++ twice in the loop)
  • Loading branch information
NathanielMotus committed Oct 14, 2020
1 parent 82042c8 commit 4a61411
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 5 deletions.
18 changes: 18 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.nathaniel.motus.cavevin"
minSdkVersion 19
targetSdkVersion 29
versionCode 2
versionName "1.1"
versionCode 3
versionName "1.2"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,6 @@ public static void exportCellarToCsvFile(Context context,Uri uri){
bw.write(csvHeader);
for (int i=0;i<Cellar.getCellarPool().get(MainActivity.getCurrentCellarIndex()).getCellList().size();i++){
bw.append(cellToCsvLine(context,Cellar.getCellarPool().get(MainActivity.getCurrentCellarIndex()).getCellList().get(i))+"\n");
i++;
}
bw.flush();
bw.close();
Expand Down
4 changes: 2 additions & 2 deletions release/output.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"properties": [],
"versionCode": 1,
"versionName": "1",
"versionCode": 3,
"versionName": "3",
"enabled": true,
"outputFile": "app-release.apk"
}
Expand Down
Binary file removed release/winecellar-v1-1.apk
Binary file not shown.
Binary file added release/winecellar-v1-2.apk
Binary file not shown.

0 comments on commit 4a61411

Please sign in to comment.