├── README.md ├── Wayfinder.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── kevinlieser.xcuserdatad │ └── UserInterfaceState.xcuserstate └── Wayfinder ├── Fonts ├── Ayuthaya.ttf ├── RedHatMonoBold.ttf └── RedHatMonoSemiBold.ttf ├── Wayfinder WatchKit App ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── appicon100.png │ │ ├── appicon102.png │ │ ├── appicon1024.png │ │ ├── appicon172.png │ │ ├── appicon196.png │ │ ├── appicon216.png │ │ ├── appicon234.png │ │ ├── appicon48.png │ │ ├── appicon55.png │ │ ├── appicon58.png │ │ ├── appicon66.png │ │ ├── appicon80.png │ │ ├── appicon87.png │ │ ├── appicon88.png │ │ └── appicon92.png │ └── Contents.json ├── Base.lproj │ └── Interface.storyboard └── Info.plist ├── Wayfinder WatchKit Extension ├── Assets.xcassets │ ├── AltitudeIcon.imageset │ │ ├── Contents.json │ │ └── alticon.png │ ├── AltitudeIconRed.imageset │ │ ├── Contents.json │ │ └── alticon_red.png │ ├── BackgroundAlignment.imageset │ │ ├── BackgroundAlignment.png │ │ └── Contents.json │ ├── BackgroundPattern.imageset │ │ ├── BackgroundPattern.png │ │ └── Contents.json │ ├── CenterCircle.imageset │ │ ├── CenterCircle@2x.png │ │ └── Contents.json │ ├── ColorRegionCircle.imageset │ │ ├── ColorRegionCircle@2x.png │ │ └── Contents.json │ ├── ColorRegionCircleReflection.imageset │ │ ├── ColorRegionCircleReflection@2x.png │ │ └── Contents.json │ ├── ColorRegionRing.imageset │ │ ├── ColorRegionRing@2x.png │ │ └── Contents.json │ ├── ColorRegionRingReflection.imageset │ │ ├── ColorRegionRingReflection@2x.png │ │ └── Contents.json │ ├── Compass-1.imageset │ │ ├── Contents.json │ │ └── compass 2.png │ ├── Compass.imageset │ │ ├── Contents.json │ │ └── compass.png │ ├── Complication.complicationset │ │ ├── Circular.imageset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Extra Large.imageset │ │ │ └── Contents.json │ │ ├── Graphic Bezel.imageset │ │ │ └── Contents.json │ │ ├── Graphic Circular.imageset │ │ │ └── Contents.json │ │ ├── Graphic Corner.imageset │ │ │ └── Contents.json │ │ ├── Graphic Extra Large.imageset │ │ │ └── Contents.json │ │ ├── Graphic Large Rectangular.imageset │ │ │ └── Contents.json │ │ ├── Modular.imageset │ │ │ └── Contents.json │ │ └── Utilitarian.imageset │ │ │ └── Contents.json │ ├── Contents.json │ ├── DirectionMarker.imageset │ │ ├── Contents.json │ │ └── directionMarker.png │ ├── Hour_Hand_Inlay_vert-regular.imageset │ │ ├── Contents.json │ │ └── Hour_Hand_Inlay_vert-regular@2x.png │ ├── Hour_Hand_vert-regular.imageset │ │ ├── Contents.json │ │ └── hour.png │ ├── Hour_Hand_vert_shadow-regular.imageset │ │ ├── Contents.json │ │ └── Hour_Hand_vert_shadow-regular@2x.png │ ├── Minute_Hand_Inlay_vert-regular.imageset │ │ ├── Contents.json │ │ └── Minute_Hand_Inlay_vert-regular@2x.png │ ├── Minute_Hand_vert-regular.imageset │ │ ├── Contents.json │ │ └── minute.png │ ├── Minute_Hand_vert_shadow-regular.imageset │ │ ├── Contents.json │ │ └── Minute_Hand_vert_shadow-regular@2x.png │ ├── Rings-1.imageset │ │ ├── Contents.json │ │ └── rings 2 3.png │ ├── Rings-2.imageset │ │ ├── Contents.json │ │ └── rings 2 2.png │ ├── Rings.imageset │ │ ├── Contents.json │ │ └── rings.png │ ├── S4Numbers.imageset │ │ ├── Contents.json │ │ └── S4Numbers.png │ ├── Second_Hand_vert-regular.imageset │ │ ├── Contents.json │ │ └── second.png │ ├── Second_Hand_vert_shadow-regular.imageset │ │ ├── Contents.json │ │ └── Second_Hand_vert_shadow-regular@2x.png │ ├── heartRate.imageset │ │ ├── Contents.json │ │ └── heartrate.png │ ├── hourRing.imageset │ │ ├── Contents.json │ │ └── hours.png │ ├── minuteRing.imageset │ │ ├── Contents.json │ │ └── minutes.png │ ├── walkIcon.imageset │ │ ├── Contents.json │ │ └── walkicon.png │ └── walkIconRed.imageset │ │ ├── Contents.json │ │ └── walkicon_red.png ├── Compass.sks ├── ComplicationController.swift ├── Dynamic.swift ├── ExtensionDelegate.swift ├── FaceScene.h ├── FaceScene.m ├── FaceScene.sks ├── Info.plist ├── InterfaceController.swift ├── Invocation.swift ├── Logger.swift ├── TypeMapping.swift ├── WatchfaceController.swift ├── Wayfinder WatchKit Extension-Bridging-Header.h └── Wayfinder WatchKit Extension.entitlements └── Wayfinder.xcodeproj ├── project.pbxproj ├── xcshareddata └── xcschemes │ ├── Wayfinder WatchKit App (Complication).xcscheme │ └── Wayfinder WatchKit App.xcscheme └── xcuserdata └── kevinlieser.xcuserdatad └── xcschemes └── xcschememanagement.plist /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/README.md -------------------------------------------------------------------------------- /Wayfinder.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Wayfinder.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Wayfinder.xcworkspace/xcuserdata/kevinlieser.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder.xcworkspace/xcuserdata/kevinlieser.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Wayfinder/Fonts/Ayuthaya.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Fonts/Ayuthaya.ttf -------------------------------------------------------------------------------- /Wayfinder/Fonts/RedHatMonoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Fonts/RedHatMonoBold.ttf -------------------------------------------------------------------------------- /Wayfinder/Fonts/RedHatMonoSemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Fonts/RedHatMonoSemiBold.ttf -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon100.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon102.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon1024.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon172.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon196.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon216.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon234.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon48.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon55.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon58.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon66.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon80.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon87.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon88.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/AppIcon.appiconset/appicon92.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Base.lproj/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Base.lproj/Interface.storyboard -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit App/Info.plist -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/AltitudeIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/AltitudeIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/AltitudeIcon.imageset/alticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/AltitudeIcon.imageset/alticon.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/AltitudeIconRed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/AltitudeIconRed.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/AltitudeIconRed.imageset/alticon_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/AltitudeIconRed.imageset/alticon_red.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/BackgroundAlignment.imageset/BackgroundAlignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/BackgroundAlignment.imageset/BackgroundAlignment.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/BackgroundAlignment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/BackgroundAlignment.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/BackgroundPattern.imageset/BackgroundPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/BackgroundPattern.imageset/BackgroundPattern.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/BackgroundPattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/BackgroundPattern.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/CenterCircle.imageset/CenterCircle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/CenterCircle.imageset/CenterCircle@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/CenterCircle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/CenterCircle.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionCircle.imageset/ColorRegionCircle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionCircle.imageset/ColorRegionCircle@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionCircle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionCircle.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionCircleReflection.imageset/ColorRegionCircleReflection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionCircleReflection.imageset/ColorRegionCircleReflection@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionCircleReflection.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionCircleReflection.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionRing.imageset/ColorRegionRing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionRing.imageset/ColorRegionRing@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionRing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionRing.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionRingReflection.imageset/ColorRegionRingReflection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionRingReflection.imageset/ColorRegionRingReflection@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionRingReflection.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/ColorRegionRingReflection.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Compass-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Compass-1.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Compass-1.imageset/compass 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Compass-1.imageset/compass 2.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Compass.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Compass.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Compass.imageset/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Compass.imageset/compass.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/DirectionMarker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/DirectionMarker.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/DirectionMarker.imageset/directionMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/DirectionMarker.imageset/directionMarker.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_Inlay_vert-regular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_Inlay_vert-regular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_Inlay_vert-regular.imageset/Hour_Hand_Inlay_vert-regular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_Inlay_vert-regular.imageset/Hour_Hand_Inlay_vert-regular@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_vert-regular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_vert-regular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_vert-regular.imageset/hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_vert-regular.imageset/hour.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_vert_shadow-regular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_vert_shadow-regular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_vert_shadow-regular.imageset/Hour_Hand_vert_shadow-regular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Hour_Hand_vert_shadow-regular.imageset/Hour_Hand_vert_shadow-regular@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_Inlay_vert-regular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_Inlay_vert-regular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_Inlay_vert-regular.imageset/Minute_Hand_Inlay_vert-regular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_Inlay_vert-regular.imageset/Minute_Hand_Inlay_vert-regular@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_vert-regular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_vert-regular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_vert-regular.imageset/minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_vert-regular.imageset/minute.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_vert_shadow-regular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_vert_shadow-regular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_vert_shadow-regular.imageset/Minute_Hand_vert_shadow-regular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Minute_Hand_vert_shadow-regular.imageset/Minute_Hand_vert_shadow-regular@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings-1.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings-1.imageset/rings 2 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings-1.imageset/rings 2 3.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings-2.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings-2.imageset/rings 2 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings-2.imageset/rings 2 2.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings.imageset/rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Rings.imageset/rings.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/S4Numbers.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/S4Numbers.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/S4Numbers.imageset/S4Numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/S4Numbers.imageset/S4Numbers.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Second_Hand_vert-regular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Second_Hand_vert-regular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Second_Hand_vert-regular.imageset/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Second_Hand_vert-regular.imageset/second.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Second_Hand_vert_shadow-regular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Second_Hand_vert_shadow-regular.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Second_Hand_vert_shadow-regular.imageset/Second_Hand_vert_shadow-regular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/Second_Hand_vert_shadow-regular.imageset/Second_Hand_vert_shadow-regular@2x.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/heartRate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/heartRate.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/heartRate.imageset/heartrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/heartRate.imageset/heartrate.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/hourRing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/hourRing.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/hourRing.imageset/hours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/hourRing.imageset/hours.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/minuteRing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/minuteRing.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/minuteRing.imageset/minutes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/minuteRing.imageset/minutes.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/walkIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/walkIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/walkIcon.imageset/walkicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/walkIcon.imageset/walkicon.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/walkIconRed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/walkIconRed.imageset/Contents.json -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/walkIconRed.imageset/walkicon_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Assets.xcassets/walkIconRed.imageset/walkicon_red.png -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Compass.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Compass.sks -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/ComplicationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/ComplicationController.swift -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Dynamic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Dynamic.swift -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/FaceScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/FaceScene.h -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/FaceScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/FaceScene.m -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/FaceScene.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/FaceScene.sks -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Info.plist -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/InterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/InterfaceController.swift -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Invocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Invocation.swift -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Logger.swift -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/TypeMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/TypeMapping.swift -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/WatchfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/WatchfaceController.swift -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Wayfinder WatchKit Extension-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Wayfinder WatchKit Extension-Bridging-Header.h -------------------------------------------------------------------------------- /Wayfinder/Wayfinder WatchKit Extension/Wayfinder WatchKit Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder WatchKit Extension/Wayfinder WatchKit Extension.entitlements -------------------------------------------------------------------------------- /Wayfinder/Wayfinder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Wayfinder/Wayfinder.xcodeproj/xcshareddata/xcschemes/Wayfinder WatchKit App (Complication).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder.xcodeproj/xcshareddata/xcschemes/Wayfinder WatchKit App (Complication).xcscheme -------------------------------------------------------------------------------- /Wayfinder/Wayfinder.xcodeproj/xcshareddata/xcschemes/Wayfinder WatchKit App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder.xcodeproj/xcshareddata/xcschemes/Wayfinder WatchKit App.xcscheme -------------------------------------------------------------------------------- /Wayfinder/Wayfinder.xcodeproj/xcuserdata/kevinlieser.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applewatchdev/Wayfinder/HEAD/Wayfinder/Wayfinder.xcodeproj/xcuserdata/kevinlieser.xcuserdatad/xcschemes/xcschememanagement.plist --------------------------------------------------------------------------------