├── Xylophone
├── note1.wav
├── note2.wav
├── note3.wav
├── note4.wav
├── note5.wav
├── note6.wav
├── note7.wav
├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ ├── Icon-40@2x.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-40@3x-1.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ └── Contents.json
├── VIewController.swift
├── Info.plist
├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
└── AppDelegate.swift
├── Xylophone.xcodeproj
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcuserdata
│ │ └── a1.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
├── xcuserdata
│ └── a1.xcuserdatad
│ │ └── xcschemes
│ │ ├── xcschememanagement.plist
│ │ └── Xylophone.xcscheme
└── project.pbxproj
└── README.md
/Xylophone/note1.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/note1.wav
--------------------------------------------------------------------------------
/Xylophone/note2.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/note2.wav
--------------------------------------------------------------------------------
/Xylophone/note3.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/note3.wav
--------------------------------------------------------------------------------
/Xylophone/note4.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/note4.wav
--------------------------------------------------------------------------------
/Xylophone/note5.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/note5.wav
--------------------------------------------------------------------------------
/Xylophone/note6.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/note6.wav
--------------------------------------------------------------------------------
/Xylophone/note7.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/note7.wav
--------------------------------------------------------------------------------
/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png
--------------------------------------------------------------------------------
/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png
--------------------------------------------------------------------------------
/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png
--------------------------------------------------------------------------------
/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-40@3x-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-40@3x-1.png
--------------------------------------------------------------------------------
/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png
--------------------------------------------------------------------------------
/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png
--------------------------------------------------------------------------------
/Xylophone.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Xylophone.xcodeproj/project.xcworkspace/xcuserdata/a1.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/londonappbrewery/xylophone/HEAD/Xylophone.xcodeproj/project.xcworkspace/xcuserdata/a1.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Xylophone
2 | Learn to make iOS Apps with the [London App Brewery](http://online.londonappbrewery.com)
3 |
4 | Project Stub | (Swift 3.0/Xcode 8) - Xylophone App
5 |
6 | Download the starter project files as .zip and extract to your desktop.
7 |
8 | ## Finished App
9 |
10 |
11 | Copyright © London App Brewery
12 |
--------------------------------------------------------------------------------
/Xylophone/ VIewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // Xylophone
4 | //
5 | // Created by Angela Yu on 27/01/2016.
6 | // Copyright © 2016 London App Brewery. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | class ViewController: UIViewController{
12 |
13 |
14 | override func viewDidLoad() {
15 | super.viewDidLoad()
16 | }
17 |
18 |
19 |
20 | @IBAction func notePressed(_ sender: UIButton) {
21 |
22 |
23 |
24 | }
25 |
26 |
27 |
28 | }
29 |
30 |
--------------------------------------------------------------------------------
/Xylophone.xcodeproj/xcuserdata/a1.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | Xylophone.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | 63C019C41C58DF76001F4187
16 |
17 | primary
18 |
19 |
20 | 63D96B8D1D6DF2C6004CD752
21 |
22 | primary
23 |
24 |
25 | 63D96B9B1D6DF2D0004CD752
26 |
27 | primary
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/Xylophone/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 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/Xylophone/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "29x29",
5 | "idiom" : "iphone",
6 | "filename" : "Icon-Small@2x.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "29x29",
11 | "idiom" : "iphone",
12 | "filename" : "Icon-Small@3x.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "40x40",
17 | "idiom" : "iphone",
18 | "filename" : "Icon-40@2x.png",
19 | "scale" : "2x"
20 | },
21 | {
22 | "size" : "40x40",
23 | "idiom" : "iphone",
24 | "filename" : "Icon-40@3x-1.png",
25 | "scale" : "3x"
26 | },
27 | {
28 | "size" : "60x60",
29 | "idiom" : "iphone",
30 | "filename" : "Icon-60@2x.png",
31 | "scale" : "2x"
32 | },
33 | {
34 | "size" : "60x60",
35 | "idiom" : "iphone",
36 | "filename" : "Icon-60@3x.png",
37 | "scale" : "3x"
38 | },
39 | {
40 | "size" : "29x29",
41 | "idiom" : "watch",
42 | "role" : "companionSettings",
43 | "scale" : "2x"
44 | },
45 | {
46 | "size" : "29x29",
47 | "idiom" : "watch",
48 | "role" : "companionSettings",
49 | "scale" : "3x"
50 | }
51 | ],
52 | "info" : {
53 | "version" : 1,
54 | "author" : "xcode"
55 | }
56 | }
--------------------------------------------------------------------------------
/Xylophone/Base.lproj/LaunchScreen.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 |
27 |
28 |
--------------------------------------------------------------------------------
/Xylophone/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // Xylophone
4 | //
5 | // Created by Angela Yu on 27/01/2016.
6 | // Copyright © 2016 London App Brewery. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | @UIApplicationMain
12 | class AppDelegate: UIResponder, UIApplicationDelegate {
13 |
14 | var window: UIWindow?
15 |
16 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]? = nil) -> Bool {
17 | return true
18 | }
19 |
20 | func applicationWillResignActive(_ application: UIApplication) {
21 | // 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.
22 | // 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.
23 | }
24 |
25 | func applicationDidEnterBackground(_ application: UIApplication) {
26 | // 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.
27 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
28 | }
29 |
30 | func applicationWillEnterForeground(_ application: UIApplication) {
31 | // 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.
32 | }
33 |
34 | func applicationDidBecomeActive(_ application: UIApplication) {
35 | // 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.
36 | }
37 |
38 | func applicationWillTerminate(_ application: UIApplication) {
39 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
40 | }
41 |
42 |
43 |
44 |
45 | }
46 |
47 |
--------------------------------------------------------------------------------
/Xylophone.xcodeproj/xcuserdata/a1.xcuserdatad/xcschemes/Xylophone.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
43 |
49 |
50 |
51 |
52 |
53 |
59 |
60 |
61 |
62 |
63 |
64 |
74 |
76 |
82 |
83 |
84 |
85 |
89 |
90 |
91 |
92 |
93 |
94 |
100 |
102 |
108 |
109 |
110 |
111 |
113 |
114 |
117 |
118 |
119 |
--------------------------------------------------------------------------------
/Xylophone/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
27 |
34 |
41 |
48 |
55 |
62 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
--------------------------------------------------------------------------------
/Xylophone.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 63C019C91C58DF76001F4187 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63C019C81C58DF76001F4187 /* AppDelegate.swift */; };
11 | 63C019CB1C58DF76001F4187 /* VIewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63C019CA1C58DF76001F4187 /* VIewController.swift */; };
12 | 63C019CE1C58DF76001F4187 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 63C019CC1C58DF76001F4187 /* Main.storyboard */; };
13 | 63C019D01C58DF76001F4187 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 63C019CF1C58DF76001F4187 /* Assets.xcassets */; };
14 | 63C019D31C58DF76001F4187 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 63C019D11C58DF76001F4187 /* LaunchScreen.storyboard */; };
15 | 63C019EF1C58E4AD001F4187 /* note1.wav in Resources */ = {isa = PBXBuildFile; fileRef = 63C019E81C58E4AD001F4187 /* note1.wav */; };
16 | 63C019F01C58E4AD001F4187 /* note2.wav in Resources */ = {isa = PBXBuildFile; fileRef = 63C019E91C58E4AD001F4187 /* note2.wav */; };
17 | 63C019F11C58E4AD001F4187 /* note3.wav in Resources */ = {isa = PBXBuildFile; fileRef = 63C019EA1C58E4AD001F4187 /* note3.wav */; };
18 | 63C019F21C58E4AD001F4187 /* note4.wav in Resources */ = {isa = PBXBuildFile; fileRef = 63C019EB1C58E4AD001F4187 /* note4.wav */; };
19 | 63C019F31C58E4AD001F4187 /* note5.wav in Resources */ = {isa = PBXBuildFile; fileRef = 63C019EC1C58E4AD001F4187 /* note5.wav */; };
20 | 63C019F41C58E4AD001F4187 /* note6.wav in Resources */ = {isa = PBXBuildFile; fileRef = 63C019ED1C58E4AD001F4187 /* note6.wav */; };
21 | 63C019F51C58E4AD001F4187 /* note7.wav in Resources */ = {isa = PBXBuildFile; fileRef = 63C019EE1C58E4AD001F4187 /* note7.wav */; };
22 | /* End PBXBuildFile section */
23 |
24 | /* Begin PBXFileReference section */
25 | 63C019C51C58DF76001F4187 /* Xylophone.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Xylophone.app; sourceTree = BUILT_PRODUCTS_DIR; };
26 | 63C019C81C58DF76001F4187 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
27 | 63C019CA1C58DF76001F4187 /* VIewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = " VIewController.swift"; sourceTree = ""; };
28 | 63C019CD1C58DF76001F4187 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
29 | 63C019CF1C58DF76001F4187 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
30 | 63C019D21C58DF76001F4187 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
31 | 63C019D41C58DF76001F4187 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
32 | 63C019E81C58E4AD001F4187 /* note1.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = note1.wav; sourceTree = ""; };
33 | 63C019E91C58E4AD001F4187 /* note2.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = note2.wav; sourceTree = ""; };
34 | 63C019EA1C58E4AD001F4187 /* note3.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = note3.wav; sourceTree = ""; };
35 | 63C019EB1C58E4AD001F4187 /* note4.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = note4.wav; sourceTree = ""; };
36 | 63C019EC1C58E4AD001F4187 /* note5.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = note5.wav; sourceTree = ""; };
37 | 63C019ED1C58E4AD001F4187 /* note6.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = note6.wav; sourceTree = ""; };
38 | 63C019EE1C58E4AD001F4187 /* note7.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = note7.wav; sourceTree = ""; };
39 | /* End PBXFileReference section */
40 |
41 | /* Begin PBXFrameworksBuildPhase section */
42 | 63C019C21C58DF76001F4187 /* Frameworks */ = {
43 | isa = PBXFrameworksBuildPhase;
44 | buildActionMask = 2147483647;
45 | files = (
46 | );
47 | runOnlyForDeploymentPostprocessing = 0;
48 | };
49 | /* End PBXFrameworksBuildPhase section */
50 |
51 | /* Begin PBXGroup section */
52 | 6385B12D1C68C76C00E57640 /* Sound Files */ = {
53 | isa = PBXGroup;
54 | children = (
55 | 63C019E81C58E4AD001F4187 /* note1.wav */,
56 | 63C019E91C58E4AD001F4187 /* note2.wav */,
57 | 63C019EA1C58E4AD001F4187 /* note3.wav */,
58 | 63C019EB1C58E4AD001F4187 /* note4.wav */,
59 | 63C019EC1C58E4AD001F4187 /* note5.wav */,
60 | 63C019ED1C58E4AD001F4187 /* note6.wav */,
61 | 63C019EE1C58E4AD001F4187 /* note7.wav */,
62 | );
63 | name = "Sound Files";
64 | sourceTree = "";
65 | };
66 | 63C019BC1C58DF76001F4187 = {
67 | isa = PBXGroup;
68 | children = (
69 | 63C019C71C58DF76001F4187 /* Xylophone */,
70 | 63C019C61C58DF76001F4187 /* Products */,
71 | );
72 | sourceTree = "";
73 | };
74 | 63C019C61C58DF76001F4187 /* Products */ = {
75 | isa = PBXGroup;
76 | children = (
77 | 63C019C51C58DF76001F4187 /* Xylophone.app */,
78 | );
79 | name = Products;
80 | sourceTree = "";
81 | };
82 | 63C019C71C58DF76001F4187 /* Xylophone */ = {
83 | isa = PBXGroup;
84 | children = (
85 | 63C019C81C58DF76001F4187 /* AppDelegate.swift */,
86 | 63C019CA1C58DF76001F4187 /* VIewController.swift */,
87 | 63C019CC1C58DF76001F4187 /* Main.storyboard */,
88 | 63C019CF1C58DF76001F4187 /* Assets.xcassets */,
89 | 63C019D11C58DF76001F4187 /* LaunchScreen.storyboard */,
90 | 63C019D41C58DF76001F4187 /* Info.plist */,
91 | 6385B12D1C68C76C00E57640 /* Sound Files */,
92 | );
93 | path = Xylophone;
94 | sourceTree = "";
95 | };
96 | /* End PBXGroup section */
97 |
98 | /* Begin PBXNativeTarget section */
99 | 63C019C41C58DF76001F4187 /* Xylophone */ = {
100 | isa = PBXNativeTarget;
101 | buildConfigurationList = 63C019D71C58DF76001F4187 /* Build configuration list for PBXNativeTarget "Xylophone" */;
102 | buildPhases = (
103 | 63C019C11C58DF76001F4187 /* Sources */,
104 | 63C019C21C58DF76001F4187 /* Frameworks */,
105 | 63C019C31C58DF76001F4187 /* Resources */,
106 | );
107 | buildRules = (
108 | );
109 | dependencies = (
110 | );
111 | name = Xylophone;
112 | productName = Xylophone;
113 | productReference = 63C019C51C58DF76001F4187 /* Xylophone.app */;
114 | productType = "com.apple.product-type.application";
115 | };
116 | /* End PBXNativeTarget section */
117 |
118 | /* Begin PBXProject section */
119 | 63C019BD1C58DF76001F4187 /* Project object */ = {
120 | isa = PBXProject;
121 | attributes = {
122 | LastSwiftUpdateCheck = 0800;
123 | LastUpgradeCheck = 0800;
124 | ORGANIZATIONNAME = "London App Brewery";
125 | TargetAttributes = {
126 | 63C019C41C58DF76001F4187 = {
127 | CreatedOnToolsVersion = 7.2;
128 | LastSwiftMigration = 0800;
129 | };
130 | };
131 | };
132 | buildConfigurationList = 63C019C01C58DF76001F4187 /* Build configuration list for PBXProject "Xylophone" */;
133 | compatibilityVersion = "Xcode 3.2";
134 | developmentRegion = English;
135 | hasScannedForEncodings = 0;
136 | knownRegions = (
137 | en,
138 | Base,
139 | );
140 | mainGroup = 63C019BC1C58DF76001F4187;
141 | productRefGroup = 63C019C61C58DF76001F4187 /* Products */;
142 | projectDirPath = "";
143 | projectRoot = "";
144 | targets = (
145 | 63C019C41C58DF76001F4187 /* Xylophone */,
146 | );
147 | };
148 | /* End PBXProject section */
149 |
150 | /* Begin PBXResourcesBuildPhase section */
151 | 63C019C31C58DF76001F4187 /* Resources */ = {
152 | isa = PBXResourcesBuildPhase;
153 | buildActionMask = 2147483647;
154 | files = (
155 | 63C019F41C58E4AD001F4187 /* note6.wav in Resources */,
156 | 63C019F31C58E4AD001F4187 /* note5.wav in Resources */,
157 | 63C019F11C58E4AD001F4187 /* note3.wav in Resources */,
158 | 63C019EF1C58E4AD001F4187 /* note1.wav in Resources */,
159 | 63C019F21C58E4AD001F4187 /* note4.wav in Resources */,
160 | 63C019F01C58E4AD001F4187 /* note2.wav in Resources */,
161 | 63C019F51C58E4AD001F4187 /* note7.wav in Resources */,
162 | 63C019D31C58DF76001F4187 /* LaunchScreen.storyboard in Resources */,
163 | 63C019D01C58DF76001F4187 /* Assets.xcassets in Resources */,
164 | 63C019CE1C58DF76001F4187 /* Main.storyboard in Resources */,
165 | );
166 | runOnlyForDeploymentPostprocessing = 0;
167 | };
168 | /* End PBXResourcesBuildPhase section */
169 |
170 | /* Begin PBXSourcesBuildPhase section */
171 | 63C019C11C58DF76001F4187 /* Sources */ = {
172 | isa = PBXSourcesBuildPhase;
173 | buildActionMask = 2147483647;
174 | files = (
175 | 63C019CB1C58DF76001F4187 /* VIewController.swift in Sources */,
176 | 63C019C91C58DF76001F4187 /* AppDelegate.swift in Sources */,
177 | );
178 | runOnlyForDeploymentPostprocessing = 0;
179 | };
180 | /* End PBXSourcesBuildPhase section */
181 |
182 | /* Begin PBXVariantGroup section */
183 | 63C019CC1C58DF76001F4187 /* Main.storyboard */ = {
184 | isa = PBXVariantGroup;
185 | children = (
186 | 63C019CD1C58DF76001F4187 /* Base */,
187 | );
188 | name = Main.storyboard;
189 | sourceTree = "";
190 | };
191 | 63C019D11C58DF76001F4187 /* LaunchScreen.storyboard */ = {
192 | isa = PBXVariantGroup;
193 | children = (
194 | 63C019D21C58DF76001F4187 /* Base */,
195 | );
196 | name = LaunchScreen.storyboard;
197 | sourceTree = "";
198 | };
199 | /* End PBXVariantGroup section */
200 |
201 | /* Begin XCBuildConfiguration section */
202 | 63C019D51C58DF76001F4187 /* Debug */ = {
203 | isa = XCBuildConfiguration;
204 | buildSettings = {
205 | ALWAYS_SEARCH_USER_PATHS = NO;
206 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
207 | CLANG_CXX_LIBRARY = "libc++";
208 | CLANG_ENABLE_MODULES = YES;
209 | CLANG_ENABLE_OBJC_ARC = YES;
210 | CLANG_WARN_BOOL_CONVERSION = YES;
211 | CLANG_WARN_CONSTANT_CONVERSION = YES;
212 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
213 | CLANG_WARN_EMPTY_BODY = YES;
214 | CLANG_WARN_ENUM_CONVERSION = YES;
215 | CLANG_WARN_INFINITE_RECURSION = YES;
216 | CLANG_WARN_INT_CONVERSION = YES;
217 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
218 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
219 | CLANG_WARN_UNREACHABLE_CODE = YES;
220 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
221 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
222 | COPY_PHASE_STRIP = NO;
223 | DEBUG_INFORMATION_FORMAT = dwarf;
224 | ENABLE_STRICT_OBJC_MSGSEND = YES;
225 | ENABLE_TESTABILITY = YES;
226 | GCC_C_LANGUAGE_STANDARD = gnu99;
227 | GCC_DYNAMIC_NO_PIC = NO;
228 | GCC_NO_COMMON_BLOCKS = YES;
229 | GCC_OPTIMIZATION_LEVEL = 0;
230 | GCC_PREPROCESSOR_DEFINITIONS = (
231 | "DEBUG=1",
232 | "$(inherited)",
233 | );
234 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
235 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
236 | GCC_WARN_UNDECLARED_SELECTOR = YES;
237 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
238 | GCC_WARN_UNUSED_FUNCTION = YES;
239 | GCC_WARN_UNUSED_VARIABLE = YES;
240 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
241 | MTL_ENABLE_DEBUG_INFO = YES;
242 | ONLY_ACTIVE_ARCH = YES;
243 | SDKROOT = iphoneos;
244 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
245 | };
246 | name = Debug;
247 | };
248 | 63C019D61C58DF76001F4187 /* Release */ = {
249 | isa = XCBuildConfiguration;
250 | buildSettings = {
251 | ALWAYS_SEARCH_USER_PATHS = NO;
252 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
253 | CLANG_CXX_LIBRARY = "libc++";
254 | CLANG_ENABLE_MODULES = YES;
255 | CLANG_ENABLE_OBJC_ARC = YES;
256 | CLANG_WARN_BOOL_CONVERSION = YES;
257 | CLANG_WARN_CONSTANT_CONVERSION = YES;
258 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
259 | CLANG_WARN_EMPTY_BODY = YES;
260 | CLANG_WARN_ENUM_CONVERSION = YES;
261 | CLANG_WARN_INFINITE_RECURSION = YES;
262 | CLANG_WARN_INT_CONVERSION = YES;
263 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
264 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
265 | CLANG_WARN_UNREACHABLE_CODE = YES;
266 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
267 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
268 | COPY_PHASE_STRIP = NO;
269 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
270 | ENABLE_NS_ASSERTIONS = NO;
271 | ENABLE_STRICT_OBJC_MSGSEND = YES;
272 | GCC_C_LANGUAGE_STANDARD = gnu99;
273 | GCC_NO_COMMON_BLOCKS = YES;
274 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
275 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
276 | GCC_WARN_UNDECLARED_SELECTOR = YES;
277 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
278 | GCC_WARN_UNUSED_FUNCTION = YES;
279 | GCC_WARN_UNUSED_VARIABLE = YES;
280 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
281 | MTL_ENABLE_DEBUG_INFO = NO;
282 | SDKROOT = iphoneos;
283 | VALIDATE_PRODUCT = YES;
284 | };
285 | name = Release;
286 | };
287 | 63C019D81C58DF76001F4187 /* Debug */ = {
288 | isa = XCBuildConfiguration;
289 | buildSettings = {
290 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
291 | INFOPLIST_FILE = Xylophone/Info.plist;
292 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
293 | PRODUCT_BUNDLE_IDENTIFIER = com.YourName.Xylophone;
294 | PRODUCT_NAME = "$(TARGET_NAME)";
295 | SWIFT_VERSION = 3.0;
296 | };
297 | name = Debug;
298 | };
299 | 63C019D91C58DF76001F4187 /* Release */ = {
300 | isa = XCBuildConfiguration;
301 | buildSettings = {
302 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
303 | INFOPLIST_FILE = Xylophone/Info.plist;
304 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
305 | PRODUCT_BUNDLE_IDENTIFIER = com.YourName.Xylophone;
306 | PRODUCT_NAME = "$(TARGET_NAME)";
307 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
308 | SWIFT_VERSION = 3.0;
309 | };
310 | name = Release;
311 | };
312 | /* End XCBuildConfiguration section */
313 |
314 | /* Begin XCConfigurationList section */
315 | 63C019C01C58DF76001F4187 /* Build configuration list for PBXProject "Xylophone" */ = {
316 | isa = XCConfigurationList;
317 | buildConfigurations = (
318 | 63C019D51C58DF76001F4187 /* Debug */,
319 | 63C019D61C58DF76001F4187 /* Release */,
320 | );
321 | defaultConfigurationIsVisible = 0;
322 | defaultConfigurationName = Release;
323 | };
324 | 63C019D71C58DF76001F4187 /* Build configuration list for PBXNativeTarget "Xylophone" */ = {
325 | isa = XCConfigurationList;
326 | buildConfigurations = (
327 | 63C019D81C58DF76001F4187 /* Debug */,
328 | 63C019D91C58DF76001F4187 /* Release */,
329 | );
330 | defaultConfigurationIsVisible = 0;
331 | defaultConfigurationName = Release;
332 | };
333 | /* End XCConfigurationList section */
334 | };
335 | rootObject = 63C019BD1C58DF76001F4187 /* Project object */;
336 | }
337 |
--------------------------------------------------------------------------------