Skip to content

Commit

Permalink
Update for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rory Glynn committed May 19, 2015
1 parent 8c75f64 commit d66d4a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "ie.yesequality.yesequality"
minSdkVersion 15
targetSdkVersion 22
versionCode 4
versionName "1.0.1"
versionCode 5
versionName "1.0.5"
}

Properties props = new Properties()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;

/**
Expand All @@ -26,7 +27,7 @@ public class YesEqualityApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
SimpleDateFormat isoFormat = new SimpleDateFormat(TIME_FORMAT);
SimpleDateFormat isoFormat = new SimpleDateFormat(TIME_FORMAT, Locale.ENGLISH);
TimeZone timeZone = TimeZone.getTimeZone(DUBLIN_TIMEZONE_NAME);
isoFormat.setTimeZone(timeZone);
Log.d(this.getClass().getSimpleName(), sVoteStartDate.toLocaleString());
Expand Down

0 comments on commit d66d4a6

Please sign in to comment.