├── HelloWatchKit WatchKit App ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Apps.imageset │ │ ├── Apps.jpg │ │ └── Contents.json │ ├── Bob.imageset │ │ ├── Bob.png │ │ └── Contents.json │ ├── Contents.json │ ├── Dave.imageset │ │ ├── Contents.json │ │ └── Dave.png │ ├── Glances.imageset │ │ ├── Contents.json │ │ └── Glances.jpg │ ├── Jerry.imageset │ │ ├── Contents.json │ │ └── Jerry.png │ ├── Jorge.imageset │ │ ├── Contents.json │ │ └── Jorge.png │ ├── Kevin.imageset │ │ ├── Contents.json │ │ └── Kevin.png │ ├── Mark.imageset │ │ ├── Contents.json │ │ └── Mark.png │ ├── Notifications.imageset │ │ ├── Contents.json │ │ └── Notifications.jpg │ ├── Phil.imageset │ │ ├── Contents.json │ │ └── Phil.png │ ├── Stuart.imageset │ │ ├── Contents.json │ │ └── Stuart.png │ └── Tim.imageset │ │ ├── Contents.json │ │ └── Tim.png ├── Info.plist └── Interface.storyboard ├── HelloWatchKit WatchKit Extension ├── Assets.xcassets │ ├── Complication.complicationset │ │ ├── Circular.imageset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Modular.imageset │ │ │ └── Contents.json │ │ └── Utilitarian.imageset │ │ │ └── Contents.json │ └── Contents.json ├── ExtensionDelegate.swift ├── FeatureInterfaceController.swift ├── Info.plist ├── InterfaceController.swift ├── MapInterfaceController.swift ├── MinionDetailsInterfaceController.swift ├── MinionRowController.swift └── TableInterfaceController.swift ├── HelloWatchKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── temporary.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── temporary.xcuserdatad │ └── xcschemes │ ├── HelloWatchKit WatchKit App.xcscheme │ ├── HelloWatchKit.xcscheme │ └── xcschememanagement.plist └── HelloWatchKit ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist └── ViewController.swift /HelloWatchKit WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Apps.imageset/Apps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Apps.imageset/Apps.jpg -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Apps.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Apps.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Bob.imageset/Bob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Bob.imageset/Bob.png -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Bob.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Bob.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Dave.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Dave.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Dave.imageset/Dave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Dave.imageset/Dave.png -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Glances.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Glances.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Glances.imageset/Glances.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Glances.imageset/Glances.jpg -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Jerry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Jerry.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Jerry.imageset/Jerry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Jerry.imageset/Jerry.png -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Jorge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Jorge.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Jorge.imageset/Jorge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Jorge.imageset/Jorge.png -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Kevin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Kevin.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Kevin.imageset/Kevin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Kevin.imageset/Kevin.png -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Mark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Mark.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Mark.imageset/Mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Mark.imageset/Mark.png -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Notifications.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Notifications.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Notifications.imageset/Notifications.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Notifications.imageset/Notifications.jpg -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Phil.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Phil.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Phil.imageset/Phil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Phil.imageset/Phil.png -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Stuart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Stuart.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Stuart.imageset/Stuart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Stuart.imageset/Stuart.png -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Tim.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Tim.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Assets.xcassets/Tim.imageset/Tim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Assets.xcassets/Tim.imageset/Tim.png -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Info.plist -------------------------------------------------------------------------------- /HelloWatchKit WatchKit App/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit App/Interface.storyboard -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/Assets.xcassets/Complication.complicationset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/Assets.xcassets/Complication.complicationset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/FeatureInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/FeatureInterfaceController.swift -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/Info.plist -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/InterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/InterfaceController.swift -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/MapInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/MapInterfaceController.swift -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/MinionDetailsInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/MinionDetailsInterfaceController.swift -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/MinionRowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/MinionRowController.swift -------------------------------------------------------------------------------- /HelloWatchKit WatchKit Extension/TableInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit WatchKit Extension/TableInterfaceController.swift -------------------------------------------------------------------------------- /HelloWatchKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HelloWatchKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HelloWatchKit.xcodeproj/project.xcworkspace/xcuserdata/temporary.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit.xcodeproj/project.xcworkspace/xcuserdata/temporary.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloWatchKit.xcodeproj/xcuserdata/temporary.xcuserdatad/xcschemes/HelloWatchKit WatchKit App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit.xcodeproj/xcuserdata/temporary.xcuserdatad/xcschemes/HelloWatchKit WatchKit App.xcscheme -------------------------------------------------------------------------------- /HelloWatchKit.xcodeproj/xcuserdata/temporary.xcuserdatad/xcschemes/HelloWatchKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit.xcodeproj/xcuserdata/temporary.xcuserdatad/xcschemes/HelloWatchKit.xcscheme -------------------------------------------------------------------------------- /HelloWatchKit.xcodeproj/xcuserdata/temporary.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit.xcodeproj/xcuserdata/temporary.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloWatchKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit/AppDelegate.swift -------------------------------------------------------------------------------- /HelloWatchKit/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HelloWatchKit/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HelloWatchKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HelloWatchKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit/Info.plist -------------------------------------------------------------------------------- /HelloWatchKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happywatch/HelloWatchKit/HEAD/HelloWatchKit/ViewController.swift --------------------------------------------------------------------------------