Skip to content

Commit c8b9ae7

Browse files
MehrdadMehrdad
Mehrdad
authored and
Mehrdad
committedFeb 18, 2021
Add the first version of the Bitcoin API app
0 parents  commit c8b9ae7

File tree

25 files changed

+932
-0
lines changed

25 files changed

+932
-0
lines changed
 

‎BitCoin API.xcodeproj/project.pbxproj

+373
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,373 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 50;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
E8C2734825637E560001FD5A /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8C2734725637E560001FD5A /* AppDelegate.swift */; };
11+
E8C2734A25637E560001FD5A /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8C2734925637E560001FD5A /* ViewController.swift */; };
12+
E8C2734D25637E560001FD5A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E8C2734B25637E560001FD5A /* Main.storyboard */; };
13+
E8C2734F25637E5A0001FD5A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E8C2734E25637E5A0001FD5A /* Assets.xcassets */; };
14+
E8C2735225637E5A0001FD5A /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E8C2735025637E5A0001FD5A /* LaunchScreen.storyboard */; };
15+
E8C2735D2563800E0001FD5A /* BitcoinAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8C2735C2563800E0001FD5A /* BitcoinAPI.swift */; };
16+
E8C2735F256390070001FD5A /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8C2735E256390070001FD5A /* Response.swift */; };
17+
/* End PBXBuildFile section */
18+
19+
/* Begin PBXFileReference section */
20+
E8C2734425637E560001FD5A /* BitCoin API.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "BitCoin API.app"; sourceTree = BUILT_PRODUCTS_DIR; };
21+
E8C2734725637E560001FD5A /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
22+
E8C2734925637E560001FD5A /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
23+
E8C2734C25637E560001FD5A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
24+
E8C2734E25637E5A0001FD5A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
25+
E8C2735125637E5A0001FD5A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
26+
E8C2735325637E5A0001FD5A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
27+
E8C2735C2563800E0001FD5A /* BitcoinAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BitcoinAPI.swift; sourceTree = "<group>"; };
28+
E8C2735E256390070001FD5A /* Response.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Response.swift; sourceTree = "<group>"; };
29+
/* End PBXFileReference section */
30+
31+
/* Begin PBXFrameworksBuildPhase section */
32+
E8C2734125637E560001FD5A /* Frameworks */ = {
33+
isa = PBXFrameworksBuildPhase;
34+
buildActionMask = 2147483647;
35+
files = (
36+
);
37+
runOnlyForDeploymentPostprocessing = 0;
38+
};
39+
/* End PBXFrameworksBuildPhase section */
40+
41+
/* Begin PBXGroup section */
42+
E8C2733B25637E560001FD5A = {
43+
isa = PBXGroup;
44+
children = (
45+
E8C2734625637E560001FD5A /* BitCoin API */,
46+
E8C2734525637E560001FD5A /* Products */,
47+
);
48+
sourceTree = "<group>";
49+
};
50+
E8C2734525637E560001FD5A /* Products */ = {
51+
isa = PBXGroup;
52+
children = (
53+
E8C2734425637E560001FD5A /* BitCoin API.app */,
54+
);
55+
name = Products;
56+
sourceTree = "<group>";
57+
};
58+
E8C2734625637E560001FD5A /* BitCoin API */ = {
59+
isa = PBXGroup;
60+
children = (
61+
E8C2735925637F360001FD5A /* Model */,
62+
E8C2735A25637F9D0001FD5A /* View */,
63+
E8C2735B25637FB80001FD5A /* Controller */,
64+
E8C2735325637E5A0001FD5A /* Info.plist */,
65+
);
66+
path = "BitCoin API";
67+
sourceTree = "<group>";
68+
};
69+
E8C2735925637F360001FD5A /* Model */ = {
70+
isa = PBXGroup;
71+
children = (
72+
E8C2735C2563800E0001FD5A /* BitcoinAPI.swift */,
73+
E8C2735E256390070001FD5A /* Response.swift */,
74+
);
75+
path = Model;
76+
sourceTree = "<group>";
77+
};
78+
E8C2735A25637F9D0001FD5A /* View */ = {
79+
isa = PBXGroup;
80+
children = (
81+
E8C2734B25637E560001FD5A /* Main.storyboard */,
82+
E8C2734E25637E5A0001FD5A /* Assets.xcassets */,
83+
E8C2735025637E5A0001FD5A /* LaunchScreen.storyboard */,
84+
);
85+
path = View;
86+
sourceTree = "<group>";
87+
};
88+
E8C2735B25637FB80001FD5A /* Controller */ = {
89+
isa = PBXGroup;
90+
children = (
91+
E8C2734725637E560001FD5A /* AppDelegate.swift */,
92+
E8C2734925637E560001FD5A /* ViewController.swift */,
93+
);
94+
path = Controller;
95+
sourceTree = "<group>";
96+
};
97+
/* End PBXGroup section */
98+
99+
/* Begin PBXNativeTarget section */
100+
E8C2734325637E560001FD5A /* BitCoin API */ = {
101+
isa = PBXNativeTarget;
102+
buildConfigurationList = E8C2735625637E5A0001FD5A /* Build configuration list for PBXNativeTarget "BitCoin API" */;
103+
buildPhases = (
104+
E8C2734025637E560001FD5A /* Sources */,
105+
E8C2734125637E560001FD5A /* Frameworks */,
106+
E8C2734225637E560001FD5A /* Resources */,
107+
);
108+
buildRules = (
109+
);
110+
dependencies = (
111+
);
112+
name = "BitCoin API";
113+
productName = "BitCoin API";
114+
productReference = E8C2734425637E560001FD5A /* BitCoin API.app */;
115+
productType = "com.apple.product-type.application";
116+
};
117+
/* End PBXNativeTarget section */
118+
119+
/* Begin PBXProject section */
120+
E8C2733C25637E560001FD5A /* Project object */ = {
121+
isa = PBXProject;
122+
attributes = {
123+
LastSwiftUpdateCheck = 1010;
124+
LastUpgradeCheck = 1010;
125+
ORGANIZATIONNAME = "Seneca College";
126+
TargetAttributes = {
127+
E8C2734325637E560001FD5A = {
128+
CreatedOnToolsVersion = 10.1;
129+
};
130+
};
131+
};
132+
buildConfigurationList = E8C2733F25637E560001FD5A /* Build configuration list for PBXProject "BitCoin API" */;
133+
compatibilityVersion = "Xcode 9.3";
134+
developmentRegion = en;
135+
hasScannedForEncodings = 0;
136+
knownRegions = (
137+
en,
138+
Base,
139+
);
140+
mainGroup = E8C2733B25637E560001FD5A;
141+
productRefGroup = E8C2734525637E560001FD5A /* Products */;
142+
projectDirPath = "";
143+
projectRoot = "";
144+
targets = (
145+
E8C2734325637E560001FD5A /* BitCoin API */,
146+
);
147+
};
148+
/* End PBXProject section */
149+
150+
/* Begin PBXResourcesBuildPhase section */
151+
E8C2734225637E560001FD5A /* Resources */ = {
152+
isa = PBXResourcesBuildPhase;
153+
buildActionMask = 2147483647;
154+
files = (
155+
E8C2735225637E5A0001FD5A /* LaunchScreen.storyboard in Resources */,
156+
E8C2734F25637E5A0001FD5A /* Assets.xcassets in Resources */,
157+
E8C2734D25637E560001FD5A /* Main.storyboard in Resources */,
158+
);
159+
runOnlyForDeploymentPostprocessing = 0;
160+
};
161+
/* End PBXResourcesBuildPhase section */
162+
163+
/* Begin PBXSourcesBuildPhase section */
164+
E8C2734025637E560001FD5A /* Sources */ = {
165+
isa = PBXSourcesBuildPhase;
166+
buildActionMask = 2147483647;
167+
files = (
168+
E8C2734A25637E560001FD5A /* ViewController.swift in Sources */,
169+
E8C2735D2563800E0001FD5A /* BitcoinAPI.swift in Sources */,
170+
E8C2734825637E560001FD5A /* AppDelegate.swift in Sources */,
171+
E8C2735F256390070001FD5A /* Response.swift in Sources */,
172+
);
173+
runOnlyForDeploymentPostprocessing = 0;
174+
};
175+
/* End PBXSourcesBuildPhase section */
176+
177+
/* Begin PBXVariantGroup section */
178+
E8C2734B25637E560001FD5A /* Main.storyboard */ = {
179+
isa = PBXVariantGroup;
180+
children = (
181+
E8C2734C25637E560001FD5A /* Base */,
182+
);
183+
name = Main.storyboard;
184+
sourceTree = "<group>";
185+
};
186+
E8C2735025637E5A0001FD5A /* LaunchScreen.storyboard */ = {
187+
isa = PBXVariantGroup;
188+
children = (
189+
E8C2735125637E5A0001FD5A /* Base */,
190+
);
191+
name = LaunchScreen.storyboard;
192+
sourceTree = "<group>";
193+
};
194+
/* End PBXVariantGroup section */
195+
196+
/* Begin XCBuildConfiguration section */
197+
E8C2735425637E5A0001FD5A /* Debug */ = {
198+
isa = XCBuildConfiguration;
199+
buildSettings = {
200+
ALWAYS_SEARCH_USER_PATHS = NO;
201+
CLANG_ANALYZER_NONNULL = YES;
202+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
203+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
204+
CLANG_CXX_LIBRARY = "libc++";
205+
CLANG_ENABLE_MODULES = YES;
206+
CLANG_ENABLE_OBJC_ARC = YES;
207+
CLANG_ENABLE_OBJC_WEAK = YES;
208+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
209+
CLANG_WARN_BOOL_CONVERSION = YES;
210+
CLANG_WARN_COMMA = YES;
211+
CLANG_WARN_CONSTANT_CONVERSION = YES;
212+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
213+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
214+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
215+
CLANG_WARN_EMPTY_BODY = YES;
216+
CLANG_WARN_ENUM_CONVERSION = YES;
217+
CLANG_WARN_INFINITE_RECURSION = YES;
218+
CLANG_WARN_INT_CONVERSION = YES;
219+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
220+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
221+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
222+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
223+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
224+
CLANG_WARN_STRICT_PROTOTYPES = YES;
225+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
226+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
227+
CLANG_WARN_UNREACHABLE_CODE = YES;
228+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
229+
CODE_SIGN_IDENTITY = "iPhone Developer";
230+
COPY_PHASE_STRIP = NO;
231+
DEBUG_INFORMATION_FORMAT = dwarf;
232+
ENABLE_STRICT_OBJC_MSGSEND = YES;
233+
ENABLE_TESTABILITY = YES;
234+
GCC_C_LANGUAGE_STANDARD = gnu11;
235+
GCC_DYNAMIC_NO_PIC = NO;
236+
GCC_NO_COMMON_BLOCKS = YES;
237+
GCC_OPTIMIZATION_LEVEL = 0;
238+
GCC_PREPROCESSOR_DEFINITIONS = (
239+
"DEBUG=1",
240+
"$(inherited)",
241+
);
242+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
243+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
244+
GCC_WARN_UNDECLARED_SELECTOR = YES;
245+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
246+
GCC_WARN_UNUSED_FUNCTION = YES;
247+
GCC_WARN_UNUSED_VARIABLE = YES;
248+
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
249+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
250+
MTL_FAST_MATH = YES;
251+
ONLY_ACTIVE_ARCH = YES;
252+
SDKROOT = iphoneos;
253+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
254+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
255+
};
256+
name = Debug;
257+
};
258+
E8C2735525637E5A0001FD5A /* Release */ = {
259+
isa = XCBuildConfiguration;
260+
buildSettings = {
261+
ALWAYS_SEARCH_USER_PATHS = NO;
262+
CLANG_ANALYZER_NONNULL = YES;
263+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
264+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
265+
CLANG_CXX_LIBRARY = "libc++";
266+
CLANG_ENABLE_MODULES = YES;
267+
CLANG_ENABLE_OBJC_ARC = YES;
268+
CLANG_ENABLE_OBJC_WEAK = YES;
269+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
270+
CLANG_WARN_BOOL_CONVERSION = YES;
271+
CLANG_WARN_COMMA = YES;
272+
CLANG_WARN_CONSTANT_CONVERSION = YES;
273+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
274+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
275+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
276+
CLANG_WARN_EMPTY_BODY = YES;
277+
CLANG_WARN_ENUM_CONVERSION = YES;
278+
CLANG_WARN_INFINITE_RECURSION = YES;
279+
CLANG_WARN_INT_CONVERSION = YES;
280+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
281+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
282+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
283+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
284+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
285+
CLANG_WARN_STRICT_PROTOTYPES = YES;
286+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
287+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
288+
CLANG_WARN_UNREACHABLE_CODE = YES;
289+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
290+
CODE_SIGN_IDENTITY = "iPhone Developer";
291+
COPY_PHASE_STRIP = NO;
292+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
293+
ENABLE_NS_ASSERTIONS = NO;
294+
ENABLE_STRICT_OBJC_MSGSEND = YES;
295+
GCC_C_LANGUAGE_STANDARD = gnu11;
296+
GCC_NO_COMMON_BLOCKS = YES;
297+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
298+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
299+
GCC_WARN_UNDECLARED_SELECTOR = YES;
300+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
301+
GCC_WARN_UNUSED_FUNCTION = YES;
302+
GCC_WARN_UNUSED_VARIABLE = YES;
303+
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
304+
MTL_ENABLE_DEBUG_INFO = NO;
305+
MTL_FAST_MATH = YES;
306+
SDKROOT = iphoneos;
307+
SWIFT_COMPILATION_MODE = wholemodule;
308+
SWIFT_OPTIMIZATION_LEVEL = "-O";
309+
VALIDATE_PRODUCT = YES;
310+
};
311+
name = Release;
312+
};
313+
E8C2735725637E5A0001FD5A /* Debug */ = {
314+
isa = XCBuildConfiguration;
315+
buildSettings = {
316+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
317+
CODE_SIGN_STYLE = Automatic;
318+
DEVELOPMENT_TEAM = 26KXCH55VA;
319+
INFOPLIST_FILE = "BitCoin API/Info.plist";
320+
LD_RUNPATH_SEARCH_PATHS = (
321+
"$(inherited)",
322+
"@executable_path/Frameworks",
323+
);
324+
PRODUCT_BUNDLE_IDENTIFIER = "edu.BitCoin-API";
325+
PRODUCT_NAME = "$(TARGET_NAME)";
326+
SWIFT_VERSION = 4.2;
327+
TARGETED_DEVICE_FAMILY = "1,2";
328+
};
329+
name = Debug;
330+
};
331+
E8C2735825637E5A0001FD5A /* Release */ = {
332+
isa = XCBuildConfiguration;
333+
buildSettings = {
334+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
335+
CODE_SIGN_STYLE = Automatic;
336+
DEVELOPMENT_TEAM = 26KXCH55VA;
337+
INFOPLIST_FILE = "BitCoin API/Info.plist";
338+
LD_RUNPATH_SEARCH_PATHS = (
339+
"$(inherited)",
340+
"@executable_path/Frameworks",
341+
);
342+
PRODUCT_BUNDLE_IDENTIFIER = "edu.BitCoin-API";
343+
PRODUCT_NAME = "$(TARGET_NAME)";
344+
SWIFT_VERSION = 4.2;
345+
TARGETED_DEVICE_FAMILY = "1,2";
346+
};
347+
name = Release;
348+
};
349+
/* End XCBuildConfiguration section */
350+
351+
/* Begin XCConfigurationList section */
352+
E8C2733F25637E560001FD5A /* Build configuration list for PBXProject "BitCoin API" */ = {
353+
isa = XCConfigurationList;
354+
buildConfigurations = (
355+
E8C2735425637E5A0001FD5A /* Debug */,
356+
E8C2735525637E5A0001FD5A /* Release */,
357+
);
358+
defaultConfigurationIsVisible = 0;
359+
defaultConfigurationName = Release;
360+
};
361+
E8C2735625637E5A0001FD5A /* Build configuration list for PBXNativeTarget "BitCoin API" */ = {
362+
isa = XCConfigurationList;
363+
buildConfigurations = (
364+
E8C2735725637E5A0001FD5A /* Debug */,
365+
E8C2735825637E5A0001FD5A /* Release */,
366+
);
367+
defaultConfigurationIsVisible = 0;
368+
defaultConfigurationName = Release;
369+
};
370+
/* End XCConfigurationList section */
371+
};
372+
rootObject = E8C2733C25637E560001FD5A /* Project object */;
373+
}

‎BitCoin API.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Bucket
3+
type = "1"
4+
version = "2.0">
5+
</Bucket>

0 commit comments

Comments
 (0)
Please sign in to comment.