├── Haptic Demo WatchKit Extension
├── Assets.xcassets
│ └── README__ignoredByTemplate__
├── HapticTableRowController.swift
├── ExtensionDelegate.swift
├── InterfaceController.swift
└── Info.plist
├── Haptic Demo.xcodeproj
├── project.xcworkspace
│ └── contents.xcworkspacedata
└── project.pbxproj
├── README.md
├── Haptic Demo
├── ViewController.swift
├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ └── Contents.json
├── Info.plist
├── Base.lproj
│ ├── Main.storyboard
│ └── LaunchScreen.storyboard
└── AppDelegate.swift
└── Haptic Demo WatchKit App
├── Info.plist
├── Assets.xcassets
└── AppIcon.appiconset
│ └── Contents.json
└── Base.lproj
└── Interface.storyboard
/Haptic Demo WatchKit Extension/Assets.xcassets/README__ignoredByTemplate__:
--------------------------------------------------------------------------------
1 | Did you know that git does not support storing empty directories?
2 |
--------------------------------------------------------------------------------
/Haptic Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Haptic feedback with the Taptic Engine
2 | ## WKInterfaceDevice and WKHapticType
3 |
4 | This is sample code provided to go along with the [Haptic Feedback with the Tapic Engine Tutorial](http://www.sneakycrab.com/blog/2015/6/22/haptic-feedback-with-the-taptic-engine-in-watchkit-and-watchos-2-wkinterfacedevice-and-wkhaptic) location in the Sneaky Crab Developer Blog.
5 |
--------------------------------------------------------------------------------
/Haptic Demo WatchKit Extension/HapticTableRowController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // HapticTableRowController.swift
3 | // Haptic Demo
4 | //
5 | // Copyright © 2015 Sneaky Crab. All rights reserved.
6 | //
7 |
8 | import Foundation
9 | import WatchKit
10 |
11 | class HapticTableRowController : NSObject {
12 | @IBOutlet var interfaceButton: WKInterfaceButton!
13 |
14 | var hapticType = WKHapticType.Click
15 |
16 | @IBAction func buttonPressed() {
17 | WKInterfaceDevice.currentDevice().playHaptic(hapticType)
18 | }
19 | }
--------------------------------------------------------------------------------
/Haptic Demo/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // Haptic Demo
4 | //
5 | // Copyright © 2015 Sneaky Crab. All rights reserved.
6 | //
7 |
8 | import UIKit
9 |
10 | class ViewController: UIViewController {
11 |
12 | override func viewDidLoad() {
13 | super.viewDidLoad()
14 | // Do any additional setup after loading the view, typically from a nib.
15 | }
16 |
17 | override func didReceiveMemoryWarning() {
18 | super.didReceiveMemoryWarning()
19 | // Dispose of any resources that can be recreated.
20 | }
21 |
22 |
23 | }
24 |
25 |
--------------------------------------------------------------------------------
/Haptic Demo/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "xcode"
37 | }
38 | }
--------------------------------------------------------------------------------
/Haptic Demo WatchKit Extension/ExtensionDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ExtensionDelegate.swift
3 | //
4 | // Copyright © 2015 Sneaky Crab. All rights reserved.
5 | //
6 |
7 | import WatchKit
8 |
9 | class ExtensionDelegate: NSObject, WKExtensionDelegate {
10 |
11 | func applicationDidFinishLaunching() {
12 | // Perform any final initialization of your application.
13 | }
14 |
15 | func applicationDidBecomeActive() {
16 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
17 | }
18 |
19 | func applicationWillResignActive() {
20 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
21 | // Use this method to pause ongoing tasks, disable timers, etc.
22 | }
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/Haptic Demo WatchKit App/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | Haptic Demo WatchKit App
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1
25 | UISupportedInterfaceOrientations
26 |
27 | UIInterfaceOrientationPortrait
28 | UIInterfaceOrientationPortraitUpsideDown
29 |
30 | WKCompanionAppBundleIdentifier
31 | com.sneakycrab.Haptic-Demo
32 | WKWatchKitApp
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/Haptic Demo/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIMainStoryboardFile
28 | Main
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationPortrait
36 | UIInterfaceOrientationLandscapeLeft
37 | UIInterfaceOrientationLandscapeRight
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/Haptic Demo WatchKit Extension/InterfaceController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // InterfaceController.swift
3 | // Haptic Demo WatchKit Extension
4 | //
5 | // Copyright © 2015 Sneaky Crab. All rights reserved.
6 | //
7 |
8 | import WatchKit
9 | import Foundation
10 |
11 | class InterfaceController: WKInterfaceController {
12 | @IBOutlet var interfaceTable: WKInterfaceTable!
13 |
14 | let hapticTypeAllValues: [(String, WKHapticType)] = [
15 | ("Notification", .Notification),
16 | ("DirectionUp", .DirectionUp),
17 | ("DirectionDown", .DirectionDown),
18 | ("Success", .Success),
19 | ("Failure", .Failure),
20 | ("Retry", .Retry),
21 | ("Start", .Start),
22 | ("Stop", .Stop),
23 | ("Click", .Click)
24 | ]
25 |
26 | override func willActivate() {
27 | super.willActivate()
28 | loadTableData()
29 | }
30 |
31 | private func loadTableData() {
32 | interfaceTable.setNumberOfRows(hapticTypeAllValues.count, withRowType: "HapticTableRowController")
33 | for (index, hapticInfo) in hapticTypeAllValues.enumerate() {
34 | let (hapticName, hapticType) = hapticInfo
35 | let row = interfaceTable.rowControllerAtIndex(index) as! HapticTableRowController
36 | row.interfaceButton.setTitle(hapticName)
37 | row.hapticType = hapticType
38 | }
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/Haptic Demo WatchKit Extension/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | Haptic Demo WatchKit Extension
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | XPC!
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1
25 | NSExtension
26 |
27 | NSExtensionAttributes
28 |
29 | WKAppBundleIdentifier
30 | com.sneakycrab.Haptic-Demo.watchkitapp
31 |
32 | NSExtensionPointIdentifier
33 | com.apple.watchkit
34 |
35 | RemoteInterfacePrincipalClass
36 | $(PRODUCT_MODULE_NAME).InterfaceController
37 | WKExtensionDelegateClassName
38 | $(PRODUCT_MODULE_NAME).ExtensionDelegate
39 |
40 |
41 |
--------------------------------------------------------------------------------
/Haptic Demo WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "24x24",
5 | "idiom" : "watch",
6 | "scale" : "2x",
7 | "role" : "notificationCenter",
8 | "subtype" : "38mm"
9 | },
10 | {
11 | "size" : "27.5x27.5",
12 | "idiom" : "watch",
13 | "scale" : "2x",
14 | "role" : "notificationCenter",
15 | "subtype" : "42mm"
16 | },
17 | {
18 | "size" : "29x29",
19 | "idiom" : "watch",
20 | "role" : "companionSettings",
21 | "scale" : "2x"
22 | },
23 | {
24 | "size" : "29x29",
25 | "idiom" : "watch",
26 | "role" : "companionSettings",
27 | "scale" : "3x"
28 | },
29 | {
30 | "size" : "40x40",
31 | "idiom" : "watch",
32 | "scale" : "2x",
33 | "role" : "appLauncher",
34 | "subtype" : "38mm"
35 | },
36 | {
37 | "size" : "44x44",
38 | "idiom" : "watch",
39 | "scale" : "2x",
40 | "role" : "longLook",
41 | "subtype" : "42mm"
42 | },
43 | {
44 | "size" : "86x86",
45 | "idiom" : "watch",
46 | "scale" : "2x",
47 | "role" : "quickLook",
48 | "subtype" : "38mm"
49 | },
50 | {
51 | "size" : "98x98",
52 | "idiom" : "watch",
53 | "scale" : "2x",
54 | "role" : "quickLook",
55 | "subtype" : "42mm"
56 | }
57 | ],
58 | "info" : {
59 | "version" : 1,
60 | "author" : "xcode"
61 | }
62 | }
63 |
--------------------------------------------------------------------------------
/Haptic Demo/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/Haptic Demo/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // Haptic Demo
4 | //
5 | // Copyright © 2015 Sneaky Crab. All rights reserved.
6 | //
7 |
8 | import UIKit
9 |
10 | @UIApplicationMain
11 | class AppDelegate: UIResponder, UIApplicationDelegate {
12 |
13 | var window: UIWindow?
14 |
15 |
16 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
17 | // Override point for customization after application launch.
18 | return true
19 | }
20 |
21 | func applicationWillResignActive(application: UIApplication) {
22 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
23 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
24 | }
25 |
26 | func applicationDidEnterBackground(application: UIApplication) {
27 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
29 | }
30 |
31 | func applicationWillEnterForeground(application: UIApplication) {
32 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
33 | }
34 |
35 | func applicationDidBecomeActive(application: UIApplication) {
36 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
37 | }
38 |
39 | func applicationWillTerminate(application: UIApplication) {
40 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
41 | }
42 |
43 |
44 | }
45 |
46 |
--------------------------------------------------------------------------------
/Haptic Demo WatchKit App/Base.lproj/Interface.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/Haptic Demo/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
26 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/Haptic Demo.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | D0AE2BF91B38BC1D00C29EE2 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0AE2BF81B38BC1D00C29EE2 /* AppDelegate.swift */; };
11 | D0AE2BFB1B38BC1D00C29EE2 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0AE2BFA1B38BC1D00C29EE2 /* ViewController.swift */; };
12 | D0AE2BFE1B38BC1D00C29EE2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D0AE2BFC1B38BC1D00C29EE2 /* Main.storyboard */; };
13 | D0AE2C001B38BC1D00C29EE2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D0AE2BFF1B38BC1D00C29EE2 /* Assets.xcassets */; };
14 | D0AE2C031B38BC1D00C29EE2 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D0AE2C011B38BC1D00C29EE2 /* LaunchScreen.storyboard */; };
15 | D0AE2C081B38BC1D00C29EE2 /* Haptic Demo WatchKit App.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = D0AE2C071B38BC1D00C29EE2 /* Haptic Demo WatchKit App.app */; };
16 | D0AE2C0E1B38BC1D00C29EE2 /* Interface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D0AE2C0C1B38BC1D00C29EE2 /* Interface.storyboard */; };
17 | D0AE2C101B38BC1D00C29EE2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D0AE2C0F1B38BC1D00C29EE2 /* Assets.xcassets */; };
18 | D0AE2C171B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = D0AE2C161B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
19 | D0AE2C1C1B38BC1D00C29EE2 /* InterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0AE2C1B1B38BC1D00C29EE2 /* InterfaceController.swift */; };
20 | D0AE2C1E1B38BC1D00C29EE2 /* ExtensionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0AE2C1D1B38BC1D00C29EE2 /* ExtensionDelegate.swift */; };
21 | D0AE2C201B38BC1D00C29EE2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D0AE2C1F1B38BC1D00C29EE2 /* Assets.xcassets */; };
22 | D0AE2C301B38BD5900C29EE2 /* HapticTableRowController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0AE2C2F1B38BD5900C29EE2 /* HapticTableRowController.swift */; };
23 | /* End PBXBuildFile section */
24 |
25 | /* Begin PBXContainerItemProxy section */
26 | D0AE2C091B38BC1D00C29EE2 /* PBXContainerItemProxy */ = {
27 | isa = PBXContainerItemProxy;
28 | containerPortal = D0AE2BED1B38BC1D00C29EE2 /* Project object */;
29 | proxyType = 1;
30 | remoteGlobalIDString = D0AE2C061B38BC1D00C29EE2;
31 | remoteInfo = "Haptic Demo WatchKit App";
32 | };
33 | D0AE2C181B38BC1D00C29EE2 /* PBXContainerItemProxy */ = {
34 | isa = PBXContainerItemProxy;
35 | containerPortal = D0AE2BED1B38BC1D00C29EE2 /* Project object */;
36 | proxyType = 1;
37 | remoteGlobalIDString = D0AE2C151B38BC1D00C29EE2;
38 | remoteInfo = "Haptic Demo WatchKit Extension";
39 | };
40 | /* End PBXContainerItemProxy section */
41 |
42 | /* Begin PBXCopyFilesBuildPhase section */
43 | D0AE2C271B38BC1D00C29EE2 /* Embed App Extensions */ = {
44 | isa = PBXCopyFilesBuildPhase;
45 | buildActionMask = 2147483647;
46 | dstPath = "";
47 | dstSubfolderSpec = 13;
48 | files = (
49 | D0AE2C171B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension.appex in Embed App Extensions */,
50 | );
51 | name = "Embed App Extensions";
52 | runOnlyForDeploymentPostprocessing = 0;
53 | };
54 | D0AE2C2B1B38BC1D00C29EE2 /* Embed Watch Content */ = {
55 | isa = PBXCopyFilesBuildPhase;
56 | buildActionMask = 2147483647;
57 | dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
58 | dstSubfolderSpec = 16;
59 | files = (
60 | D0AE2C081B38BC1D00C29EE2 /* Haptic Demo WatchKit App.app in Embed Watch Content */,
61 | );
62 | name = "Embed Watch Content";
63 | runOnlyForDeploymentPostprocessing = 0;
64 | };
65 | /* End PBXCopyFilesBuildPhase section */
66 |
67 | /* Begin PBXFileReference section */
68 | D0AE2BF51B38BC1D00C29EE2 /* Haptic Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Haptic Demo.app"; sourceTree = BUILT_PRODUCTS_DIR; };
69 | D0AE2BF81B38BC1D00C29EE2 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
70 | D0AE2BFA1B38BC1D00C29EE2 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
71 | D0AE2BFD1B38BC1D00C29EE2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
72 | D0AE2BFF1B38BC1D00C29EE2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
73 | D0AE2C021B38BC1D00C29EE2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
74 | D0AE2C041B38BC1D00C29EE2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
75 | D0AE2C071B38BC1D00C29EE2 /* Haptic Demo WatchKit App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Haptic Demo WatchKit App.app"; sourceTree = BUILT_PRODUCTS_DIR; };
76 | D0AE2C0D1B38BC1D00C29EE2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Interface.storyboard; sourceTree = ""; };
77 | D0AE2C0F1B38BC1D00C29EE2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
78 | D0AE2C111B38BC1D00C29EE2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
79 | D0AE2C161B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Haptic Demo WatchKit Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
80 | D0AE2C1B1B38BC1D00C29EE2 /* InterfaceController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InterfaceController.swift; sourceTree = ""; };
81 | D0AE2C1D1B38BC1D00C29EE2 /* ExtensionDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExtensionDelegate.swift; sourceTree = ""; };
82 | D0AE2C1F1B38BC1D00C29EE2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
83 | D0AE2C211B38BC1D00C29EE2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
84 | D0AE2C2F1B38BD5900C29EE2 /* HapticTableRowController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HapticTableRowController.swift; sourceTree = ""; };
85 | /* End PBXFileReference section */
86 |
87 | /* Begin PBXFrameworksBuildPhase section */
88 | D0AE2BF21B38BC1D00C29EE2 /* Frameworks */ = {
89 | isa = PBXFrameworksBuildPhase;
90 | buildActionMask = 2147483647;
91 | files = (
92 | );
93 | runOnlyForDeploymentPostprocessing = 0;
94 | };
95 | D0AE2C131B38BC1D00C29EE2 /* Frameworks */ = {
96 | isa = PBXFrameworksBuildPhase;
97 | buildActionMask = 2147483647;
98 | files = (
99 | );
100 | runOnlyForDeploymentPostprocessing = 0;
101 | };
102 | /* End PBXFrameworksBuildPhase section */
103 |
104 | /* Begin PBXGroup section */
105 | D0AE2BEC1B38BC1D00C29EE2 = {
106 | isa = PBXGroup;
107 | children = (
108 | D0AE2BF71B38BC1D00C29EE2 /* Haptic Demo */,
109 | D0AE2C0B1B38BC1D00C29EE2 /* Haptic Demo WatchKit App */,
110 | D0AE2C1A1B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension */,
111 | D0AE2BF61B38BC1D00C29EE2 /* Products */,
112 | );
113 | sourceTree = "";
114 | };
115 | D0AE2BF61B38BC1D00C29EE2 /* Products */ = {
116 | isa = PBXGroup;
117 | children = (
118 | D0AE2BF51B38BC1D00C29EE2 /* Haptic Demo.app */,
119 | D0AE2C071B38BC1D00C29EE2 /* Haptic Demo WatchKit App.app */,
120 | D0AE2C161B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension.appex */,
121 | );
122 | name = Products;
123 | sourceTree = "";
124 | };
125 | D0AE2BF71B38BC1D00C29EE2 /* Haptic Demo */ = {
126 | isa = PBXGroup;
127 | children = (
128 | D0AE2BF81B38BC1D00C29EE2 /* AppDelegate.swift */,
129 | D0AE2BFA1B38BC1D00C29EE2 /* ViewController.swift */,
130 | D0AE2BFC1B38BC1D00C29EE2 /* Main.storyboard */,
131 | D0AE2BFF1B38BC1D00C29EE2 /* Assets.xcassets */,
132 | D0AE2C011B38BC1D00C29EE2 /* LaunchScreen.storyboard */,
133 | D0AE2C041B38BC1D00C29EE2 /* Info.plist */,
134 | );
135 | path = "Haptic Demo";
136 | sourceTree = "";
137 | };
138 | D0AE2C0B1B38BC1D00C29EE2 /* Haptic Demo WatchKit App */ = {
139 | isa = PBXGroup;
140 | children = (
141 | D0AE2C0C1B38BC1D00C29EE2 /* Interface.storyboard */,
142 | D0AE2C0F1B38BC1D00C29EE2 /* Assets.xcassets */,
143 | D0AE2C111B38BC1D00C29EE2 /* Info.plist */,
144 | );
145 | path = "Haptic Demo WatchKit App";
146 | sourceTree = "";
147 | };
148 | D0AE2C1A1B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension */ = {
149 | isa = PBXGroup;
150 | children = (
151 | D0AE2C1B1B38BC1D00C29EE2 /* InterfaceController.swift */,
152 | D0AE2C1D1B38BC1D00C29EE2 /* ExtensionDelegate.swift */,
153 | D0AE2C1F1B38BC1D00C29EE2 /* Assets.xcassets */,
154 | D0AE2C211B38BC1D00C29EE2 /* Info.plist */,
155 | D0AE2C2F1B38BD5900C29EE2 /* HapticTableRowController.swift */,
156 | );
157 | path = "Haptic Demo WatchKit Extension";
158 | sourceTree = "";
159 | };
160 | /* End PBXGroup section */
161 |
162 | /* Begin PBXNativeTarget section */
163 | D0AE2BF41B38BC1D00C29EE2 /* Haptic Demo */ = {
164 | isa = PBXNativeTarget;
165 | buildConfigurationList = D0AE2C2C1B38BC1D00C29EE2 /* Build configuration list for PBXNativeTarget "Haptic Demo" */;
166 | buildPhases = (
167 | D0AE2BF11B38BC1D00C29EE2 /* Sources */,
168 | D0AE2BF21B38BC1D00C29EE2 /* Frameworks */,
169 | D0AE2BF31B38BC1D00C29EE2 /* Resources */,
170 | D0AE2C2B1B38BC1D00C29EE2 /* Embed Watch Content */,
171 | );
172 | buildRules = (
173 | );
174 | dependencies = (
175 | D0AE2C0A1B38BC1D00C29EE2 /* PBXTargetDependency */,
176 | );
177 | name = "Haptic Demo";
178 | productName = "Haptic Demo";
179 | productReference = D0AE2BF51B38BC1D00C29EE2 /* Haptic Demo.app */;
180 | productType = "com.apple.product-type.application";
181 | };
182 | D0AE2C061B38BC1D00C29EE2 /* Haptic Demo WatchKit App */ = {
183 | isa = PBXNativeTarget;
184 | buildConfigurationList = D0AE2C281B38BC1D00C29EE2 /* Build configuration list for PBXNativeTarget "Haptic Demo WatchKit App" */;
185 | buildPhases = (
186 | D0AE2C051B38BC1D00C29EE2 /* Resources */,
187 | D0AE2C271B38BC1D00C29EE2 /* Embed App Extensions */,
188 | );
189 | buildRules = (
190 | );
191 | dependencies = (
192 | D0AE2C191B38BC1D00C29EE2 /* PBXTargetDependency */,
193 | );
194 | name = "Haptic Demo WatchKit App";
195 | productName = "Haptic Demo WatchKit App";
196 | productReference = D0AE2C071B38BC1D00C29EE2 /* Haptic Demo WatchKit App.app */;
197 | productType = "com.apple.product-type.application.watchapp2";
198 | };
199 | D0AE2C151B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension */ = {
200 | isa = PBXNativeTarget;
201 | buildConfigurationList = D0AE2C241B38BC1D00C29EE2 /* Build configuration list for PBXNativeTarget "Haptic Demo WatchKit Extension" */;
202 | buildPhases = (
203 | D0AE2C121B38BC1D00C29EE2 /* Sources */,
204 | D0AE2C131B38BC1D00C29EE2 /* Frameworks */,
205 | D0AE2C141B38BC1D00C29EE2 /* Resources */,
206 | );
207 | buildRules = (
208 | );
209 | dependencies = (
210 | );
211 | name = "Haptic Demo WatchKit Extension";
212 | productName = "Haptic Demo WatchKit Extension";
213 | productReference = D0AE2C161B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension.appex */;
214 | productType = "com.apple.product-type.watchkit2-extension";
215 | };
216 | /* End PBXNativeTarget section */
217 |
218 | /* Begin PBXProject section */
219 | D0AE2BED1B38BC1D00C29EE2 /* Project object */ = {
220 | isa = PBXProject;
221 | attributes = {
222 | LastUpgradeCheck = 0700;
223 | ORGANIZATIONNAME = "Sneaky Crab";
224 | TargetAttributes = {
225 | D0AE2BF41B38BC1D00C29EE2 = {
226 | CreatedOnToolsVersion = 7.0;
227 | };
228 | D0AE2C061B38BC1D00C29EE2 = {
229 | CreatedOnToolsVersion = 7.0;
230 | };
231 | D0AE2C151B38BC1D00C29EE2 = {
232 | CreatedOnToolsVersion = 7.0;
233 | };
234 | };
235 | };
236 | buildConfigurationList = D0AE2BF01B38BC1D00C29EE2 /* Build configuration list for PBXProject "Haptic Demo" */;
237 | compatibilityVersion = "Xcode 3.2";
238 | developmentRegion = English;
239 | hasScannedForEncodings = 0;
240 | knownRegions = (
241 | en,
242 | Base,
243 | );
244 | mainGroup = D0AE2BEC1B38BC1D00C29EE2;
245 | productRefGroup = D0AE2BF61B38BC1D00C29EE2 /* Products */;
246 | projectDirPath = "";
247 | projectRoot = "";
248 | targets = (
249 | D0AE2BF41B38BC1D00C29EE2 /* Haptic Demo */,
250 | D0AE2C061B38BC1D00C29EE2 /* Haptic Demo WatchKit App */,
251 | D0AE2C151B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension */,
252 | );
253 | };
254 | /* End PBXProject section */
255 |
256 | /* Begin PBXResourcesBuildPhase section */
257 | D0AE2BF31B38BC1D00C29EE2 /* Resources */ = {
258 | isa = PBXResourcesBuildPhase;
259 | buildActionMask = 2147483647;
260 | files = (
261 | D0AE2C031B38BC1D00C29EE2 /* LaunchScreen.storyboard in Resources */,
262 | D0AE2C001B38BC1D00C29EE2 /* Assets.xcassets in Resources */,
263 | D0AE2BFE1B38BC1D00C29EE2 /* Main.storyboard in Resources */,
264 | );
265 | runOnlyForDeploymentPostprocessing = 0;
266 | };
267 | D0AE2C051B38BC1D00C29EE2 /* Resources */ = {
268 | isa = PBXResourcesBuildPhase;
269 | buildActionMask = 2147483647;
270 | files = (
271 | D0AE2C101B38BC1D00C29EE2 /* Assets.xcassets in Resources */,
272 | D0AE2C0E1B38BC1D00C29EE2 /* Interface.storyboard in Resources */,
273 | );
274 | runOnlyForDeploymentPostprocessing = 0;
275 | };
276 | D0AE2C141B38BC1D00C29EE2 /* Resources */ = {
277 | isa = PBXResourcesBuildPhase;
278 | buildActionMask = 2147483647;
279 | files = (
280 | D0AE2C201B38BC1D00C29EE2 /* Assets.xcassets in Resources */,
281 | );
282 | runOnlyForDeploymentPostprocessing = 0;
283 | };
284 | /* End PBXResourcesBuildPhase section */
285 |
286 | /* Begin PBXSourcesBuildPhase section */
287 | D0AE2BF11B38BC1D00C29EE2 /* Sources */ = {
288 | isa = PBXSourcesBuildPhase;
289 | buildActionMask = 2147483647;
290 | files = (
291 | D0AE2BFB1B38BC1D00C29EE2 /* ViewController.swift in Sources */,
292 | D0AE2BF91B38BC1D00C29EE2 /* AppDelegate.swift in Sources */,
293 | );
294 | runOnlyForDeploymentPostprocessing = 0;
295 | };
296 | D0AE2C121B38BC1D00C29EE2 /* Sources */ = {
297 | isa = PBXSourcesBuildPhase;
298 | buildActionMask = 2147483647;
299 | files = (
300 | D0AE2C1E1B38BC1D00C29EE2 /* ExtensionDelegate.swift in Sources */,
301 | D0AE2C1C1B38BC1D00C29EE2 /* InterfaceController.swift in Sources */,
302 | D0AE2C301B38BD5900C29EE2 /* HapticTableRowController.swift in Sources */,
303 | );
304 | runOnlyForDeploymentPostprocessing = 0;
305 | };
306 | /* End PBXSourcesBuildPhase section */
307 |
308 | /* Begin PBXTargetDependency section */
309 | D0AE2C0A1B38BC1D00C29EE2 /* PBXTargetDependency */ = {
310 | isa = PBXTargetDependency;
311 | target = D0AE2C061B38BC1D00C29EE2 /* Haptic Demo WatchKit App */;
312 | targetProxy = D0AE2C091B38BC1D00C29EE2 /* PBXContainerItemProxy */;
313 | };
314 | D0AE2C191B38BC1D00C29EE2 /* PBXTargetDependency */ = {
315 | isa = PBXTargetDependency;
316 | target = D0AE2C151B38BC1D00C29EE2 /* Haptic Demo WatchKit Extension */;
317 | targetProxy = D0AE2C181B38BC1D00C29EE2 /* PBXContainerItemProxy */;
318 | };
319 | /* End PBXTargetDependency section */
320 |
321 | /* Begin PBXVariantGroup section */
322 | D0AE2BFC1B38BC1D00C29EE2 /* Main.storyboard */ = {
323 | isa = PBXVariantGroup;
324 | children = (
325 | D0AE2BFD1B38BC1D00C29EE2 /* Base */,
326 | );
327 | name = Main.storyboard;
328 | sourceTree = "";
329 | };
330 | D0AE2C011B38BC1D00C29EE2 /* LaunchScreen.storyboard */ = {
331 | isa = PBXVariantGroup;
332 | children = (
333 | D0AE2C021B38BC1D00C29EE2 /* Base */,
334 | );
335 | name = LaunchScreen.storyboard;
336 | sourceTree = "";
337 | };
338 | D0AE2C0C1B38BC1D00C29EE2 /* Interface.storyboard */ = {
339 | isa = PBXVariantGroup;
340 | children = (
341 | D0AE2C0D1B38BC1D00C29EE2 /* Base */,
342 | );
343 | name = Interface.storyboard;
344 | sourceTree = "";
345 | };
346 | /* End PBXVariantGroup section */
347 |
348 | /* Begin XCBuildConfiguration section */
349 | D0AE2C221B38BC1D00C29EE2 /* Debug */ = {
350 | isa = XCBuildConfiguration;
351 | buildSettings = {
352 | ALWAYS_SEARCH_USER_PATHS = NO;
353 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
354 | CLANG_CXX_LIBRARY = "libc++";
355 | CLANG_ENABLE_MODULES = YES;
356 | CLANG_ENABLE_OBJC_ARC = YES;
357 | CLANG_WARN_BOOL_CONVERSION = YES;
358 | CLANG_WARN_CONSTANT_CONVERSION = YES;
359 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
360 | CLANG_WARN_EMPTY_BODY = YES;
361 | CLANG_WARN_ENUM_CONVERSION = YES;
362 | CLANG_WARN_INT_CONVERSION = YES;
363 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
364 | CLANG_WARN_UNREACHABLE_CODE = YES;
365 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
366 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
367 | COPY_PHASE_STRIP = NO;
368 | DEBUG_INFORMATION_FORMAT = dwarf;
369 | ENABLE_STRICT_OBJC_MSGSEND = YES;
370 | ENABLE_TESTABILITY = YES;
371 | GCC_C_LANGUAGE_STANDARD = gnu99;
372 | GCC_DYNAMIC_NO_PIC = NO;
373 | GCC_NO_COMMON_BLOCKS = YES;
374 | GCC_OPTIMIZATION_LEVEL = 0;
375 | GCC_PREPROCESSOR_DEFINITIONS = (
376 | "DEBUG=1",
377 | "$(inherited)",
378 | );
379 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
380 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
381 | GCC_WARN_UNDECLARED_SELECTOR = YES;
382 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
383 | GCC_WARN_UNUSED_FUNCTION = YES;
384 | GCC_WARN_UNUSED_VARIABLE = YES;
385 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
386 | MTL_ENABLE_DEBUG_INFO = YES;
387 | ONLY_ACTIVE_ARCH = YES;
388 | SDKROOT = iphoneos;
389 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
390 | };
391 | name = Debug;
392 | };
393 | D0AE2C231B38BC1D00C29EE2 /* Release */ = {
394 | isa = XCBuildConfiguration;
395 | buildSettings = {
396 | ALWAYS_SEARCH_USER_PATHS = NO;
397 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
398 | CLANG_CXX_LIBRARY = "libc++";
399 | CLANG_ENABLE_MODULES = YES;
400 | CLANG_ENABLE_OBJC_ARC = YES;
401 | CLANG_WARN_BOOL_CONVERSION = YES;
402 | CLANG_WARN_CONSTANT_CONVERSION = YES;
403 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
404 | CLANG_WARN_EMPTY_BODY = YES;
405 | CLANG_WARN_ENUM_CONVERSION = YES;
406 | CLANG_WARN_INT_CONVERSION = YES;
407 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
408 | CLANG_WARN_UNREACHABLE_CODE = YES;
409 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
410 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
411 | COPY_PHASE_STRIP = NO;
412 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
413 | ENABLE_NS_ASSERTIONS = NO;
414 | ENABLE_STRICT_OBJC_MSGSEND = YES;
415 | GCC_C_LANGUAGE_STANDARD = gnu99;
416 | GCC_NO_COMMON_BLOCKS = YES;
417 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
418 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
419 | GCC_WARN_UNDECLARED_SELECTOR = YES;
420 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
421 | GCC_WARN_UNUSED_FUNCTION = YES;
422 | GCC_WARN_UNUSED_VARIABLE = YES;
423 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
424 | MTL_ENABLE_DEBUG_INFO = NO;
425 | SDKROOT = iphoneos;
426 | VALIDATE_PRODUCT = YES;
427 | };
428 | name = Release;
429 | };
430 | D0AE2C251B38BC1D00C29EE2 /* Debug */ = {
431 | isa = XCBuildConfiguration;
432 | buildSettings = {
433 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Developer";
434 | INFOPLIST_FILE = "Haptic Demo WatchKit Extension/Info.plist";
435 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
436 | PRODUCT_BUNDLE_IDENTIFIER = "com.sneakycrab.Haptic-Demo.watchkitapp.watchkitextension";
437 | PRODUCT_NAME = "${TARGET_NAME}";
438 | SDKROOT = watchos;
439 | SKIP_INSTALL = YES;
440 | TARGETED_DEVICE_FAMILY = 4;
441 | WATCHOS_DEPLOYMENT_TARGET = 2.0;
442 | };
443 | name = Debug;
444 | };
445 | D0AE2C261B38BC1D00C29EE2 /* Release */ = {
446 | isa = XCBuildConfiguration;
447 | buildSettings = {
448 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Developer";
449 | INFOPLIST_FILE = "Haptic Demo WatchKit Extension/Info.plist";
450 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
451 | PRODUCT_BUNDLE_IDENTIFIER = "com.sneakycrab.Haptic-Demo.watchkitapp.watchkitextension";
452 | PRODUCT_NAME = "${TARGET_NAME}";
453 | SDKROOT = watchos;
454 | SKIP_INSTALL = YES;
455 | TARGETED_DEVICE_FAMILY = 4;
456 | WATCHOS_DEPLOYMENT_TARGET = 2.0;
457 | };
458 | name = Release;
459 | };
460 | D0AE2C291B38BC1D00C29EE2 /* Debug */ = {
461 | isa = XCBuildConfiguration;
462 | buildSettings = {
463 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
464 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Developer";
465 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
466 | IBSC_MODULE = Haptic_Demo_WatchKit_Extension;
467 | INFOPLIST_FILE = "Haptic Demo WatchKit App/Info.plist";
468 | PRODUCT_BUNDLE_IDENTIFIER = "com.sneakycrab.Haptic-Demo.watchkitapp";
469 | PRODUCT_NAME = "$(TARGET_NAME)";
470 | SDKROOT = watchos;
471 | SKIP_INSTALL = YES;
472 | TARGETED_DEVICE_FAMILY = 4;
473 | WATCHOS_DEPLOYMENT_TARGET = 2.0;
474 | };
475 | name = Debug;
476 | };
477 | D0AE2C2A1B38BC1D00C29EE2 /* Release */ = {
478 | isa = XCBuildConfiguration;
479 | buildSettings = {
480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
481 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Developer";
482 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
483 | IBSC_MODULE = Haptic_Demo_WatchKit_Extension;
484 | INFOPLIST_FILE = "Haptic Demo WatchKit App/Info.plist";
485 | PRODUCT_BUNDLE_IDENTIFIER = "com.sneakycrab.Haptic-Demo.watchkitapp";
486 | PRODUCT_NAME = "$(TARGET_NAME)";
487 | SDKROOT = watchos;
488 | SKIP_INSTALL = YES;
489 | TARGETED_DEVICE_FAMILY = 4;
490 | WATCHOS_DEPLOYMENT_TARGET = 2.0;
491 | };
492 | name = Release;
493 | };
494 | D0AE2C2D1B38BC1D00C29EE2 /* Debug */ = {
495 | isa = XCBuildConfiguration;
496 | buildSettings = {
497 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
498 | INFOPLIST_FILE = "Haptic Demo/Info.plist";
499 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
500 | PRODUCT_BUNDLE_IDENTIFIER = "com.sneakycrab.Haptic-Demo";
501 | PRODUCT_NAME = "$(TARGET_NAME)";
502 | };
503 | name = Debug;
504 | };
505 | D0AE2C2E1B38BC1D00C29EE2 /* Release */ = {
506 | isa = XCBuildConfiguration;
507 | buildSettings = {
508 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
509 | INFOPLIST_FILE = "Haptic Demo/Info.plist";
510 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
511 | PRODUCT_BUNDLE_IDENTIFIER = "com.sneakycrab.Haptic-Demo";
512 | PRODUCT_NAME = "$(TARGET_NAME)";
513 | };
514 | name = Release;
515 | };
516 | /* End XCBuildConfiguration section */
517 |
518 | /* Begin XCConfigurationList section */
519 | D0AE2BF01B38BC1D00C29EE2 /* Build configuration list for PBXProject "Haptic Demo" */ = {
520 | isa = XCConfigurationList;
521 | buildConfigurations = (
522 | D0AE2C221B38BC1D00C29EE2 /* Debug */,
523 | D0AE2C231B38BC1D00C29EE2 /* Release */,
524 | );
525 | defaultConfigurationIsVisible = 0;
526 | defaultConfigurationName = Release;
527 | };
528 | D0AE2C241B38BC1D00C29EE2 /* Build configuration list for PBXNativeTarget "Haptic Demo WatchKit Extension" */ = {
529 | isa = XCConfigurationList;
530 | buildConfigurations = (
531 | D0AE2C251B38BC1D00C29EE2 /* Debug */,
532 | D0AE2C261B38BC1D00C29EE2 /* Release */,
533 | );
534 | defaultConfigurationIsVisible = 0;
535 | };
536 | D0AE2C281B38BC1D00C29EE2 /* Build configuration list for PBXNativeTarget "Haptic Demo WatchKit App" */ = {
537 | isa = XCConfigurationList;
538 | buildConfigurations = (
539 | D0AE2C291B38BC1D00C29EE2 /* Debug */,
540 | D0AE2C2A1B38BC1D00C29EE2 /* Release */,
541 | );
542 | defaultConfigurationIsVisible = 0;
543 | };
544 | D0AE2C2C1B38BC1D00C29EE2 /* Build configuration list for PBXNativeTarget "Haptic Demo" */ = {
545 | isa = XCConfigurationList;
546 | buildConfigurations = (
547 | D0AE2C2D1B38BC1D00C29EE2 /* Debug */,
548 | D0AE2C2E1B38BC1D00C29EE2 /* Release */,
549 | );
550 | defaultConfigurationIsVisible = 0;
551 | };
552 | /* End XCConfigurationList section */
553 | };
554 | rootObject = D0AE2BED1B38BC1D00C29EE2 /* Project object */;
555 | }
556 |
--------------------------------------------------------------------------------