├── .gitignore ├── LICENSE ├── Main App ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── BridgingHeader.h ├── DetailsViewController.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-120-1.png │ │ ├── icon-120.png │ │ ├── icon-180.png │ │ ├── icon-58.png │ │ ├── icon-80.png │ │ └── icon-87.png │ └── close.imageset │ │ ├── Contents.json │ │ ├── close.png │ │ ├── close@2x.png │ │ └── close@3x.png ├── Info.plist ├── Locations.swift ├── ViewController.swift ├── WatchKitExample.entitlements └── brew-icon.png ├── Podfile ├── Podfile.lock ├── README.md ├── Screenshots.png ├── Watch App ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-172.png │ │ ├── icon-196.png │ │ ├── icon-48.png │ │ ├── icon-55.png │ │ ├── icon-58.png │ │ ├── icon-80.png │ │ ├── icon-87.png │ │ └── icon-88.png │ ├── placeholder.imageset │ │ ├── Contents.json │ │ └── placeholder.png │ └── right-arrow.imageset │ │ ├── Contents.json │ │ └── right-arrow.png ├── Info.plist └── Interface.storyboard ├── WatchKit Extension ├── BaseInterfaceController.swift ├── BridgingHeader.h ├── DetailInterfaceController.swift ├── ImageInterfaceController.swift ├── Images.xcassets │ └── activity-large.imageset │ │ ├── Contents.json │ │ └── activity-large@2x.png ├── Info.plist ├── InterfaceController.swift ├── MapInterfaceController.swift ├── NewsTableRowController.swift └── WatchKitExample WatchKit Extension.entitlements ├── WatchKitExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── WatchKitExample Watch App.xcscheme │ └── WatchKitExample.xcscheme └── WatchKitExample.xcworkspace └── contents.xcworkspacedata /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/LICENSE -------------------------------------------------------------------------------- /Main App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/AppDelegate.swift -------------------------------------------------------------------------------- /Main App/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Main App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Main App/BridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/BridgingHeader.h -------------------------------------------------------------------------------- /Main App/DetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/DetailsViewController.swift -------------------------------------------------------------------------------- /Main App/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Main App/Images.xcassets/AppIcon.appiconset/icon-120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/AppIcon.appiconset/icon-120-1.png -------------------------------------------------------------------------------- /Main App/Images.xcassets/AppIcon.appiconset/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/AppIcon.appiconset/icon-120.png -------------------------------------------------------------------------------- /Main App/Images.xcassets/AppIcon.appiconset/icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/AppIcon.appiconset/icon-180.png -------------------------------------------------------------------------------- /Main App/Images.xcassets/AppIcon.appiconset/icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/AppIcon.appiconset/icon-58.png -------------------------------------------------------------------------------- /Main App/Images.xcassets/AppIcon.appiconset/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/AppIcon.appiconset/icon-80.png -------------------------------------------------------------------------------- /Main App/Images.xcassets/AppIcon.appiconset/icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/AppIcon.appiconset/icon-87.png -------------------------------------------------------------------------------- /Main App/Images.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /Main App/Images.xcassets/close.imageset/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/close.imageset/close.png -------------------------------------------------------------------------------- /Main App/Images.xcassets/close.imageset/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/close.imageset/close@2x.png -------------------------------------------------------------------------------- /Main App/Images.xcassets/close.imageset/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Images.xcassets/close.imageset/close@3x.png -------------------------------------------------------------------------------- /Main App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Info.plist -------------------------------------------------------------------------------- /Main App/Locations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/Locations.swift -------------------------------------------------------------------------------- /Main App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/ViewController.swift -------------------------------------------------------------------------------- /Main App/WatchKitExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/WatchKitExample.entitlements -------------------------------------------------------------------------------- /Main App/brew-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Main App/brew-icon.png -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Screenshots.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Watch App/Images.xcassets/AppIcon.appiconset/icon-172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/AppIcon.appiconset/icon-172.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/AppIcon.appiconset/icon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/AppIcon.appiconset/icon-196.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/AppIcon.appiconset/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/AppIcon.appiconset/icon-48.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/AppIcon.appiconset/icon-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/AppIcon.appiconset/icon-55.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/AppIcon.appiconset/icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/AppIcon.appiconset/icon-58.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/AppIcon.appiconset/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/AppIcon.appiconset/icon-80.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/AppIcon.appiconset/icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/AppIcon.appiconset/icon-87.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/AppIcon.appiconset/icon-88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/AppIcon.appiconset/icon-88.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /Watch App/Images.xcassets/placeholder.imageset/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/placeholder.imageset/placeholder.png -------------------------------------------------------------------------------- /Watch App/Images.xcassets/right-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/right-arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Watch App/Images.xcassets/right-arrow.imageset/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Images.xcassets/right-arrow.imageset/right-arrow.png -------------------------------------------------------------------------------- /Watch App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Info.plist -------------------------------------------------------------------------------- /Watch App/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/Watch App/Interface.storyboard -------------------------------------------------------------------------------- /WatchKit Extension/BaseInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/BaseInterfaceController.swift -------------------------------------------------------------------------------- /WatchKit Extension/BridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/BridgingHeader.h -------------------------------------------------------------------------------- /WatchKit Extension/DetailInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/DetailInterfaceController.swift -------------------------------------------------------------------------------- /WatchKit Extension/ImageInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/ImageInterfaceController.swift -------------------------------------------------------------------------------- /WatchKit Extension/Images.xcassets/activity-large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/Images.xcassets/activity-large.imageset/Contents.json -------------------------------------------------------------------------------- /WatchKit Extension/Images.xcassets/activity-large.imageset/activity-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/Images.xcassets/activity-large.imageset/activity-large@2x.png -------------------------------------------------------------------------------- /WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/Info.plist -------------------------------------------------------------------------------- /WatchKit Extension/InterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/InterfaceController.swift -------------------------------------------------------------------------------- /WatchKit Extension/MapInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/MapInterfaceController.swift -------------------------------------------------------------------------------- /WatchKit Extension/NewsTableRowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/NewsTableRowController.swift -------------------------------------------------------------------------------- /WatchKit Extension/WatchKitExample WatchKit Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKit Extension/WatchKitExample WatchKit Extension.entitlements -------------------------------------------------------------------------------- /WatchKitExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKitExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WatchKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WatchKitExample.xcodeproj/xcshareddata/xcschemes/WatchKitExample Watch App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKitExample.xcodeproj/xcshareddata/xcschemes/WatchKitExample Watch App.xcscheme -------------------------------------------------------------------------------- /WatchKitExample.xcodeproj/xcshareddata/xcschemes/WatchKitExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKitExample.xcodeproj/xcshareddata/xcschemes/WatchKitExample.xcscheme -------------------------------------------------------------------------------- /WatchKitExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/ContentfulWatchKitExample/HEAD/WatchKitExample.xcworkspace/contents.xcworkspacedata --------------------------------------------------------------------------------