Skip to content

Commit

Permalink
Version 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nico2che committed Sep 29, 2016
1 parent c394f48 commit ddd9d75
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
Binary file modified app/app-release.apk
Binary file not shown.
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.aerophile.app"
minSdkVersion 16
targetSdkVersion 24
versionCode 27
versionName "1.6"
versionCode 28
versionName "1.6.1"
}
buildTypes {
release {
Expand Down
10 changes: 10 additions & 0 deletions app/src/main/java/com/aerophile/app/VolListActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,16 @@ public void onItemSelected(long id) {
Bundle arguments = new Bundle();
arguments.putLong(VolDetailFragment.ARG_ITEM_ID, id);

if(saving) {
arguments.putBoolean(VolDetailFragment.ARG_CHANGEMENT, changeHeure);
arguments.putInt(VolDetailFragment.ARG_DECOLLAGE_HEURE, heureDecollage);
arguments.putInt(VolDetailFragment.ARG_DECOLLAGE_MINUTE, minuteDecollage);
arguments.putString(VolDetailFragment.ARG_PILOTE, pilote);
arguments.putInt(VolDetailFragment.ARG_PASSAGERS, nombrePassagers);
arguments.putString(VolDetailFragment.ARG_VENT, vent);
arguments.putString(VolDetailFragment.ARG_COMMENTAIRE, commentaire);
}
saving = false;

fragment = new VolDetailFragment_();
fragment.setArguments(arguments);
Expand Down

0 comments on commit ddd9d75

Please sign in to comment.