diff --git a/resources-fenix3/images/car_icon.png b/resources-fenix3/images/car_icon.png deleted file mode 100644 index 404b7d5..0000000 Binary files a/resources-fenix3/images/car_icon.png and /dev/null differ diff --git a/resources-fenix3/images/launcher_icon.png b/resources-fenix3/images/launcher_icon.png deleted file mode 100644 index e8eb083..0000000 Binary files a/resources-fenix3/images/launcher_icon.png and /dev/null differ diff --git a/resources-fenix3/layouts/main_layout.xml b/resources-fenix3/layouts/main_layout.xml index 1f23f4a..04c28e4 100644 --- a/resources-fenix3/layouts/main_layout.xml +++ b/resources-fenix3/layouts/main_layout.xml @@ -2,7 +2,7 @@ diff --git a/resources-fenix3/menus/activity_menu.xml b/resources-fenix3/menus/activity_menu.xml deleted file mode 100644 index ed29859..0000000 --- a/resources-fenix3/menus/activity_menu.xml +++ /dev/null @@ -1,5 +0,0 @@ - - Resume - Save - Discard - \ No newline at end of file diff --git a/resources-fenix3/menus/menu.xml b/resources-fenix3/menus/menu.xml deleted file mode 100644 index 8bde387..0000000 --- a/resources-fenix3/menus/menu.xml +++ /dev/null @@ -1,4 +0,0 @@ - - Start Trip - View History - \ No newline at end of file diff --git a/resources-fenix3/resources.xml b/resources-fenix3/resources.xml index f6b0033..76515cf 100644 --- a/resources-fenix3/resources.xml +++ b/resources-fenix3/resources.xml @@ -1,8 +1,8 @@ CommuteTracker - - + + 58 diff --git a/resources-round/drawables/drawables.xml b/resources-round/drawables/drawables.xml new file mode 100644 index 0000000..3f618b3 --- /dev/null +++ b/resources-round/drawables/drawables.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources-round/layouts/commute_activity_layout.xml b/resources-round/layouts/commute_activity_layout.xml new file mode 100644 index 0000000..db60bff --- /dev/null +++ b/resources-round/layouts/commute_activity_layout.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources-round/layouts/commute_summary_page_one_layout.xml b/resources-round/layouts/commute_summary_page_one_layout.xml new file mode 100644 index 0000000..0dd624e --- /dev/null +++ b/resources-round/layouts/commute_summary_page_one_layout.xml @@ -0,0 +1,32 @@ + + + + + + + + + \ No newline at end of file diff --git a/resources-round/layouts/commute_summary_page_two_layout.xml b/resources-round/layouts/commute_summary_page_two_layout.xml new file mode 100644 index 0000000..1489504 --- /dev/null +++ b/resources-round/layouts/commute_summary_page_two_layout.xml @@ -0,0 +1,28 @@ + + + + + + + + + \ No newline at end of file diff --git a/resources-round/layouts/history_chart_layout.xml b/resources-round/layouts/history_chart_layout.xml new file mode 100644 index 0000000..721c003 --- /dev/null +++ b/resources-round/layouts/history_chart_layout.xml @@ -0,0 +1,24 @@ + + + + + + + \ No newline at end of file diff --git a/resources-round/layouts/history_detail_layout.xml b/resources-round/layouts/history_detail_layout.xml new file mode 100644 index 0000000..46da875 --- /dev/null +++ b/resources-round/layouts/history_detail_layout.xml @@ -0,0 +1,44 @@ + + + + + + + + + \ No newline at end of file diff --git a/resources-round/layouts/history_detail_no_data_layout.xml b/resources-round/layouts/history_detail_no_data_layout.xml new file mode 100644 index 0000000..31c9ebd --- /dev/null +++ b/resources-round/layouts/history_detail_no_data_layout.xml @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/resources-round/layouts/main_layout.xml b/resources-round/layouts/main_layout.xml new file mode 100644 index 0000000..a3f8fa4 --- /dev/null +++ b/resources-round/layouts/main_layout.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/resources-round/resources.xml b/resources-round/resources.xml new file mode 100644 index 0000000..9984b9e --- /dev/null +++ b/resources-round/resources.xml @@ -0,0 +1,18 @@ + + CommuteTracker + + + + + + 58 + 62 + 17 + 140 + 5 + + + 115 + 10 + + \ No newline at end of file diff --git a/source/CommuteActivity.mc b/source/CommuteActivity.mc index cd8b42d..ee1b198 100644 --- a/source/CommuteActivity.mc +++ b/source/CommuteActivity.mc @@ -202,10 +202,6 @@ module CommuteActivity { } } - function isMoving() { - return isMoving; - } - function hasGPSFix() { return isValidGPS; } diff --git a/source/CommuteTrackerApp.mc b/source/CommuteTrackerApp.mc index ee59a3b..2ad6527 100644 --- a/source/CommuteTrackerApp.mc +++ b/source/CommuteTrackerApp.mc @@ -10,11 +10,11 @@ using CommuteActivity as CommuteActivity; class CommuteTrackerApp extends App.AppBase { //! onStart() is called on application start up - function onStart() { + function onStart(state) { } //! onStop() is called when your application is exiting - function onStop() { + function onStop(state) { } //! Return the initial view of your application here