Skip to content

Commit f81d48e

Browse files
author
Andrew Jaffee
committed
Initial commit
0 parents  commit f81d48e

File tree

9 files changed

+954
-0
lines changed

9 files changed

+954
-0
lines changed

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## Build generated
6+
build/
7+
DerivedData/
8+
9+
## Various settings
10+
*.pbxuser
11+
!default.pbxuser
12+
*.mode1v3
13+
!default.mode1v3
14+
*.mode2v3
15+
!default.mode2v3
16+
*.perspectivev3
17+
!default.perspectivev3
18+
xcuserdata/
19+
20+
## Other
21+
*.moved-aside
22+
*.xcuserstate
23+
24+
## Obj-C/Swift specific
25+
*.hmap
26+
*.ipa
27+
*.dSYM.zip
28+
*.dSYM
29+
30+
## Playgrounds
31+
timeline.xctimeline
32+
playground.xcworkspace
33+
34+
# Swift Package Manager
35+
#
36+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
37+
# Packages/
38+
.build/
39+
40+
# CocoaPods
41+
#
42+
# We recommend against adding the Pods directory to your .gitignore. However
43+
# you should judge for yourself, the pros and cons are mentioned at:
44+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
45+
#
46+
# Pods/
47+
48+
# Carthage
49+
#
50+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
51+
# Carthage/Checkouts
52+
53+
Carthage/Build
54+
55+
# fastlane
56+
#
57+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
58+
# screenshots whenever they are needed.
59+
# For more information about the recommended setup visit:
60+
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
61+
62+
fastlane/report.xml
63+
fastlane/Preview.html
64+
fastlane/screenshots
65+
fastlane/test_output
Lines changed: 309 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,309 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
BC8019671E460D890082402C /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC8019661E460D890082402C /* AppDelegate.swift */; };
11+
BC8019691E460D890082402C /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC8019681E460D890082402C /* ViewController.swift */; };
12+
BC80196C1E460D890082402C /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BC80196A1E460D890082402C /* Main.storyboard */; };
13+
BC80196E1E460D890082402C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BC80196D1E460D890082402C /* Assets.xcassets */; };
14+
BC8019711E460D890082402C /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BC80196F1E460D890082402C /* LaunchScreen.storyboard */; };
15+
/* End PBXBuildFile section */
16+
17+
/* Begin PBXFileReference section */
18+
BC8019631E460D890082402C /* Concurrency Starter.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Concurrency Starter.app"; sourceTree = BUILT_PRODUCTS_DIR; };
19+
BC8019661E460D890082402C /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
20+
BC8019681E460D890082402C /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
21+
BC80196B1E460D890082402C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
22+
BC80196D1E460D890082402C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
23+
BC8019701E460D890082402C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
24+
BC8019721E460D890082402C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
25+
/* End PBXFileReference section */
26+
27+
/* Begin PBXFrameworksBuildPhase section */
28+
BC8019601E460D890082402C /* Frameworks */ = {
29+
isa = PBXFrameworksBuildPhase;
30+
buildActionMask = 2147483647;
31+
files = (
32+
);
33+
runOnlyForDeploymentPostprocessing = 0;
34+
};
35+
/* End PBXFrameworksBuildPhase section */
36+
37+
/* Begin PBXGroup section */
38+
BC80195A1E460D890082402C = {
39+
isa = PBXGroup;
40+
children = (
41+
BC8019651E460D890082402C /* Concurrency Starter */,
42+
BC8019641E460D890082402C /* Products */,
43+
);
44+
sourceTree = "<group>";
45+
};
46+
BC8019641E460D890082402C /* Products */ = {
47+
isa = PBXGroup;
48+
children = (
49+
BC8019631E460D890082402C /* Concurrency Starter.app */,
50+
);
51+
name = Products;
52+
sourceTree = "<group>";
53+
};
54+
BC8019651E460D890082402C /* Concurrency Starter */ = {
55+
isa = PBXGroup;
56+
children = (
57+
BC8019661E460D890082402C /* AppDelegate.swift */,
58+
BC8019681E460D890082402C /* ViewController.swift */,
59+
BC80196A1E460D890082402C /* Main.storyboard */,
60+
BC80196D1E460D890082402C /* Assets.xcassets */,
61+
BC80196F1E460D890082402C /* LaunchScreen.storyboard */,
62+
BC8019721E460D890082402C /* Info.plist */,
63+
);
64+
path = "Concurrency Starter";
65+
sourceTree = "<group>";
66+
};
67+
/* End PBXGroup section */
68+
69+
/* Begin PBXNativeTarget section */
70+
BC8019621E460D890082402C /* Concurrency Starter */ = {
71+
isa = PBXNativeTarget;
72+
buildConfigurationList = BC8019751E460D890082402C /* Build configuration list for PBXNativeTarget "Concurrency Starter" */;
73+
buildPhases = (
74+
BC80195F1E460D890082402C /* Sources */,
75+
BC8019601E460D890082402C /* Frameworks */,
76+
BC8019611E460D890082402C /* Resources */,
77+
);
78+
buildRules = (
79+
);
80+
dependencies = (
81+
);
82+
name = "Concurrency Starter";
83+
productName = "Concurrency Starter";
84+
productReference = BC8019631E460D890082402C /* Concurrency Starter.app */;
85+
productType = "com.apple.product-type.application";
86+
};
87+
/* End PBXNativeTarget section */
88+
89+
/* Begin PBXProject section */
90+
BC80195B1E460D890082402C /* Project object */ = {
91+
isa = PBXProject;
92+
attributes = {
93+
LastSwiftUpdateCheck = 0820;
94+
LastUpgradeCheck = 0820;
95+
ORGANIZATIONNAME = "microIT Infrastructure, LLC";
96+
TargetAttributes = {
97+
BC8019621E460D890082402C = {
98+
CreatedOnToolsVersion = 8.2.1;
99+
ProvisioningStyle = Automatic;
100+
};
101+
};
102+
};
103+
buildConfigurationList = BC80195E1E460D890082402C /* Build configuration list for PBXProject "Concurrency Starter" */;
104+
compatibilityVersion = "Xcode 3.2";
105+
developmentRegion = English;
106+
hasScannedForEncodings = 0;
107+
knownRegions = (
108+
en,
109+
Base,
110+
);
111+
mainGroup = BC80195A1E460D890082402C;
112+
productRefGroup = BC8019641E460D890082402C /* Products */;
113+
projectDirPath = "";
114+
projectRoot = "";
115+
targets = (
116+
BC8019621E460D890082402C /* Concurrency Starter */,
117+
);
118+
};
119+
/* End PBXProject section */
120+
121+
/* Begin PBXResourcesBuildPhase section */
122+
BC8019611E460D890082402C /* Resources */ = {
123+
isa = PBXResourcesBuildPhase;
124+
buildActionMask = 2147483647;
125+
files = (
126+
BC8019711E460D890082402C /* LaunchScreen.storyboard in Resources */,
127+
BC80196E1E460D890082402C /* Assets.xcassets in Resources */,
128+
BC80196C1E460D890082402C /* Main.storyboard in Resources */,
129+
);
130+
runOnlyForDeploymentPostprocessing = 0;
131+
};
132+
/* End PBXResourcesBuildPhase section */
133+
134+
/* Begin PBXSourcesBuildPhase section */
135+
BC80195F1E460D890082402C /* Sources */ = {
136+
isa = PBXSourcesBuildPhase;
137+
buildActionMask = 2147483647;
138+
files = (
139+
BC8019691E460D890082402C /* ViewController.swift in Sources */,
140+
BC8019671E460D890082402C /* AppDelegate.swift in Sources */,
141+
);
142+
runOnlyForDeploymentPostprocessing = 0;
143+
};
144+
/* End PBXSourcesBuildPhase section */
145+
146+
/* Begin PBXVariantGroup section */
147+
BC80196A1E460D890082402C /* Main.storyboard */ = {
148+
isa = PBXVariantGroup;
149+
children = (
150+
BC80196B1E460D890082402C /* Base */,
151+
);
152+
name = Main.storyboard;
153+
sourceTree = "<group>";
154+
};
155+
BC80196F1E460D890082402C /* LaunchScreen.storyboard */ = {
156+
isa = PBXVariantGroup;
157+
children = (
158+
BC8019701E460D890082402C /* Base */,
159+
);
160+
name = LaunchScreen.storyboard;
161+
sourceTree = "<group>";
162+
};
163+
/* End PBXVariantGroup section */
164+
165+
/* Begin XCBuildConfiguration section */
166+
BC8019731E460D890082402C /* Debug */ = {
167+
isa = XCBuildConfiguration;
168+
buildSettings = {
169+
ALWAYS_SEARCH_USER_PATHS = NO;
170+
CLANG_ANALYZER_NONNULL = YES;
171+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
172+
CLANG_CXX_LIBRARY = "libc++";
173+
CLANG_ENABLE_MODULES = YES;
174+
CLANG_ENABLE_OBJC_ARC = YES;
175+
CLANG_WARN_BOOL_CONVERSION = YES;
176+
CLANG_WARN_CONSTANT_CONVERSION = YES;
177+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
178+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
179+
CLANG_WARN_EMPTY_BODY = YES;
180+
CLANG_WARN_ENUM_CONVERSION = YES;
181+
CLANG_WARN_INFINITE_RECURSION = YES;
182+
CLANG_WARN_INT_CONVERSION = YES;
183+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
184+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
185+
CLANG_WARN_UNREACHABLE_CODE = YES;
186+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
187+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
188+
COPY_PHASE_STRIP = NO;
189+
DEBUG_INFORMATION_FORMAT = dwarf;
190+
ENABLE_STRICT_OBJC_MSGSEND = YES;
191+
ENABLE_TESTABILITY = YES;
192+
GCC_C_LANGUAGE_STANDARD = gnu99;
193+
GCC_DYNAMIC_NO_PIC = NO;
194+
GCC_NO_COMMON_BLOCKS = YES;
195+
GCC_OPTIMIZATION_LEVEL = 0;
196+
GCC_PREPROCESSOR_DEFINITIONS = (
197+
"DEBUG=1",
198+
"$(inherited)",
199+
);
200+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
201+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
202+
GCC_WARN_UNDECLARED_SELECTOR = YES;
203+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
204+
GCC_WARN_UNUSED_FUNCTION = YES;
205+
GCC_WARN_UNUSED_VARIABLE = YES;
206+
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
207+
MTL_ENABLE_DEBUG_INFO = YES;
208+
ONLY_ACTIVE_ARCH = YES;
209+
SDKROOT = iphoneos;
210+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
211+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
212+
TARGETED_DEVICE_FAMILY = "1,2";
213+
};
214+
name = Debug;
215+
};
216+
BC8019741E460D890082402C /* Release */ = {
217+
isa = XCBuildConfiguration;
218+
buildSettings = {
219+
ALWAYS_SEARCH_USER_PATHS = NO;
220+
CLANG_ANALYZER_NONNULL = YES;
221+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
222+
CLANG_CXX_LIBRARY = "libc++";
223+
CLANG_ENABLE_MODULES = YES;
224+
CLANG_ENABLE_OBJC_ARC = YES;
225+
CLANG_WARN_BOOL_CONVERSION = YES;
226+
CLANG_WARN_CONSTANT_CONVERSION = YES;
227+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
228+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
229+
CLANG_WARN_EMPTY_BODY = YES;
230+
CLANG_WARN_ENUM_CONVERSION = YES;
231+
CLANG_WARN_INFINITE_RECURSION = YES;
232+
CLANG_WARN_INT_CONVERSION = YES;
233+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
234+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
235+
CLANG_WARN_UNREACHABLE_CODE = YES;
236+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
237+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
238+
COPY_PHASE_STRIP = NO;
239+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
240+
ENABLE_NS_ASSERTIONS = NO;
241+
ENABLE_STRICT_OBJC_MSGSEND = YES;
242+
GCC_C_LANGUAGE_STANDARD = gnu99;
243+
GCC_NO_COMMON_BLOCKS = YES;
244+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
245+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
246+
GCC_WARN_UNDECLARED_SELECTOR = YES;
247+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
248+
GCC_WARN_UNUSED_FUNCTION = YES;
249+
GCC_WARN_UNUSED_VARIABLE = YES;
250+
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
251+
MTL_ENABLE_DEBUG_INFO = NO;
252+
SDKROOT = iphoneos;
253+
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
254+
TARGETED_DEVICE_FAMILY = "1,2";
255+
VALIDATE_PRODUCT = YES;
256+
};
257+
name = Release;
258+
};
259+
BC8019761E460D890082402C /* Debug */ = {
260+
isa = XCBuildConfiguration;
261+
buildSettings = {
262+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
263+
DEVELOPMENT_TEAM = "";
264+
INFOPLIST_FILE = "Concurrency Starter/Info.plist";
265+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
266+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourDomainNameHere.Concurrency-Starter";
267+
PRODUCT_NAME = "$(TARGET_NAME)";
268+
SWIFT_VERSION = 3.0;
269+
};
270+
name = Debug;
271+
};
272+
BC8019771E460D890082402C /* Release */ = {
273+
isa = XCBuildConfiguration;
274+
buildSettings = {
275+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
276+
DEVELOPMENT_TEAM = "";
277+
INFOPLIST_FILE = "Concurrency Starter/Info.plist";
278+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
279+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourDomainNameHere.Concurrency-Starter";
280+
PRODUCT_NAME = "$(TARGET_NAME)";
281+
SWIFT_VERSION = 3.0;
282+
};
283+
name = Release;
284+
};
285+
/* End XCBuildConfiguration section */
286+
287+
/* Begin XCConfigurationList section */
288+
BC80195E1E460D890082402C /* Build configuration list for PBXProject "Concurrency Starter" */ = {
289+
isa = XCConfigurationList;
290+
buildConfigurations = (
291+
BC8019731E460D890082402C /* Debug */,
292+
BC8019741E460D890082402C /* Release */,
293+
);
294+
defaultConfigurationIsVisible = 0;
295+
defaultConfigurationName = Release;
296+
};
297+
BC8019751E460D890082402C /* Build configuration list for PBXNativeTarget "Concurrency Starter" */ = {
298+
isa = XCConfigurationList;
299+
buildConfigurations = (
300+
BC8019761E460D890082402C /* Debug */,
301+
BC8019771E460D890082402C /* Release */,
302+
);
303+
defaultConfigurationIsVisible = 0;
304+
defaultConfigurationName = Release;
305+
};
306+
/* End XCConfigurationList section */
307+
};
308+
rootObject = BC80195B1E460D890082402C /* Project object */;
309+
}

Concurrency Starter.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)