Skip to content

Commit

Permalink
fix symbol not found in syncVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
tumb1er committed Sep 28, 2019
1 parent 158b1b7 commit 9f6bcd2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- This is a generated file. It is highly recommended that you DO NOT edit this file. --><iq:manifest xmlns:iq="http://www.garmin.com/xml/connectiq" version="3">
<iq:application entry="ElPrimeroApp" id="2C83218064D49991A5F44E8292B3C90A" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="1.3.1" name="@Strings.AppName" type="watchface" version="1.6.3">
<iq:application entry="ElPrimeroApp" id="2C83218064D49991A5F44E8292B3C90A" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="1.3.1" name="@Strings.AppName" type="watchface" version="1.6.4">
<iq:products>
<iq:product id="fenix5"/>
<iq:product id="fenix5plus"/>
Expand Down
2 changes: 1 addition & 1 deletion resources/settings/properties.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<properties>
<property id="appVersion" type="string">1.6.3</property>
<property id="appVersion" type="string">1.6.4</property>
<property id="backgroundColor" type="number">85</property>
<property id="twoHertzMode" type="boolean">true</property>
<property id="utcOffset" type="number">0</property>
Expand Down
2 changes: 1 addition & 1 deletion resources/strings/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<strings>
<string id="AppName">ElPrimero</string>
<string id="InternalVersion">1.6.3</string>
<string id="InternalVersion">1.6.4</string>
<string id="WeekDays">SUNMONTUEWEDTHUFRISAT</string>
<string id="Months">JANFEBMARAPRMAYJUNJULAUGSEPOCTNOVDEC</string>
<string id="Icons">ZABSN</string>
Expand Down
2 changes: 1 addition & 1 deletion source/ElPrimeroView.mc
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class ElPrimeroView extends WatchUi.WatchFace {
var settingsVersion = null;
try {
settingsVersion = Properties.getValue("appVersion");
} catch (e instanceof InvalidKeyException) {}
} catch (e instanceof Properties.InvalidKeyException) {}
var resourcesVersion = loadResource(Rez.Strings.InternalVersion);
if (!resourcesVersion.equals(settingsVersion)) {
Properties.setValue("appVersion", resourcesVersion);
Expand Down

0 comments on commit 9f6bcd2

Please sign in to comment.