Skip to content

Commit fa745dc

Browse files
committed
Initial version
1 parent ddab5a0 commit fa745dc

File tree

690 files changed

+88520
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

690 files changed

+88520
-0
lines changed
Lines changed: 365 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,365 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 50;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
C0AFBE53228B10FB001E7F53 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0AFBE52228B10FB001E7F53 /* AppDelegate.swift */; };
11+
C0AFBE55228B10FB001E7F53 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0AFBE54228B10FB001E7F53 /* ViewController.swift */; };
12+
C0AFBE58228B10FB001E7F53 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0AFBE56228B10FB001E7F53 /* Main.storyboard */; };
13+
C0AFBE5A228B10FE001E7F53 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C0AFBE59228B10FE001E7F53 /* Assets.xcassets */; };
14+
C0AFBE5D228B10FE001E7F53 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0AFBE5B228B10FE001E7F53 /* LaunchScreen.storyboard */; };
15+
C0AFBE68228B112B001E7F53 /* samplePDF.pdf in Resources */ = {isa = PBXBuildFile; fileRef = C0AFBE65228B112B001E7F53 /* samplePDF.pdf */; };
16+
C0AFBE69228B112B001E7F53 /* sampleText.txt in Resources */ = {isa = PBXBuildFile; fileRef = C0AFBE66228B112B001E7F53 /* sampleText.txt */; };
17+
C0AFBE6A228B112B001E7F53 /* sampleImage.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C0AFBE67228B112B001E7F53 /* sampleImage.jpg */; };
18+
C0AFBE6C228B1150001E7F53 /* RestManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0AFBE6B228B1150001E7F53 /* RestManager.swift */; };
19+
/* End PBXBuildFile section */
20+
21+
/* Begin PBXFileReference section */
22+
C0AFBE4F228B10FB001E7F53 /* FileUploader.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FileUploader.app; sourceTree = BUILT_PRODUCTS_DIR; };
23+
C0AFBE52228B10FB001E7F53 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
24+
C0AFBE54228B10FB001E7F53 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
25+
C0AFBE57228B10FB001E7F53 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
26+
C0AFBE59228B10FE001E7F53 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
27+
C0AFBE5C228B10FE001E7F53 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
28+
C0AFBE5E228B10FE001E7F53 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
29+
C0AFBE65228B112B001E7F53 /* samplePDF.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = samplePDF.pdf; sourceTree = "<group>"; };
30+
C0AFBE66228B112B001E7F53 /* sampleText.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sampleText.txt; sourceTree = "<group>"; };
31+
C0AFBE67228B112B001E7F53 /* sampleImage.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = sampleImage.jpg; sourceTree = "<group>"; };
32+
C0AFBE6B228B1150001E7F53 /* RestManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RestManager.swift; sourceTree = "<group>"; };
33+
/* End PBXFileReference section */
34+
35+
/* Begin PBXFrameworksBuildPhase section */
36+
C0AFBE4C228B10FB001E7F53 /* Frameworks */ = {
37+
isa = PBXFrameworksBuildPhase;
38+
buildActionMask = 2147483647;
39+
files = (
40+
);
41+
runOnlyForDeploymentPostprocessing = 0;
42+
};
43+
/* End PBXFrameworksBuildPhase section */
44+
45+
/* Begin PBXGroup section */
46+
C0AFBE46228B10FB001E7F53 = {
47+
isa = PBXGroup;
48+
children = (
49+
C0AFBE51228B10FB001E7F53 /* FileUploader */,
50+
C0AFBE50228B10FB001E7F53 /* Products */,
51+
);
52+
sourceTree = "<group>";
53+
};
54+
C0AFBE50228B10FB001E7F53 /* Products */ = {
55+
isa = PBXGroup;
56+
children = (
57+
C0AFBE4F228B10FB001E7F53 /* FileUploader.app */,
58+
);
59+
name = Products;
60+
sourceTree = "<group>";
61+
};
62+
C0AFBE51228B10FB001E7F53 /* FileUploader */ = {
63+
isa = PBXGroup;
64+
children = (
65+
C0AFBE6B228B1150001E7F53 /* RestManager.swift */,
66+
C0AFBE52228B10FB001E7F53 /* AppDelegate.swift */,
67+
C0AFBE54228B10FB001E7F53 /* ViewController.swift */,
68+
C0AFBE56228B10FB001E7F53 /* Main.storyboard */,
69+
C0AFBE59228B10FE001E7F53 /* Assets.xcassets */,
70+
C0AFBE5B228B10FE001E7F53 /* LaunchScreen.storyboard */,
71+
C0AFBE5E228B10FE001E7F53 /* Info.plist */,
72+
C0AFBE64228B1105001E7F53 /* Sample Files */,
73+
);
74+
path = FileUploader;
75+
sourceTree = "<group>";
76+
};
77+
C0AFBE64228B1105001E7F53 /* Sample Files */ = {
78+
isa = PBXGroup;
79+
children = (
80+
C0AFBE67228B112B001E7F53 /* sampleImage.jpg */,
81+
C0AFBE65228B112B001E7F53 /* samplePDF.pdf */,
82+
C0AFBE66228B112B001E7F53 /* sampleText.txt */,
83+
);
84+
path = "Sample Files";
85+
sourceTree = "<group>";
86+
};
87+
/* End PBXGroup section */
88+
89+
/* Begin PBXNativeTarget section */
90+
C0AFBE4E228B10FB001E7F53 /* FileUploader */ = {
91+
isa = PBXNativeTarget;
92+
buildConfigurationList = C0AFBE61228B10FE001E7F53 /* Build configuration list for PBXNativeTarget "FileUploader" */;
93+
buildPhases = (
94+
C0AFBE4B228B10FB001E7F53 /* Sources */,
95+
C0AFBE4C228B10FB001E7F53 /* Frameworks */,
96+
C0AFBE4D228B10FB001E7F53 /* Resources */,
97+
);
98+
buildRules = (
99+
);
100+
dependencies = (
101+
);
102+
name = FileUploader;
103+
productName = FileUploader;
104+
productReference = C0AFBE4F228B10FB001E7F53 /* FileUploader.app */;
105+
productType = "com.apple.product-type.application";
106+
};
107+
/* End PBXNativeTarget section */
108+
109+
/* Begin PBXProject section */
110+
C0AFBE47228B10FB001E7F53 /* Project object */ = {
111+
isa = PBXProject;
112+
attributes = {
113+
LastSwiftUpdateCheck = 1020;
114+
LastUpgradeCheck = 1020;
115+
ORGANIZATIONNAME = Appcoda;
116+
TargetAttributes = {
117+
C0AFBE4E228B10FB001E7F53 = {
118+
CreatedOnToolsVersion = 10.2.1;
119+
};
120+
};
121+
};
122+
buildConfigurationList = C0AFBE4A228B10FB001E7F53 /* Build configuration list for PBXProject "FileUploader" */;
123+
compatibilityVersion = "Xcode 9.3";
124+
developmentRegion = en;
125+
hasScannedForEncodings = 0;
126+
knownRegions = (
127+
en,
128+
Base,
129+
);
130+
mainGroup = C0AFBE46228B10FB001E7F53;
131+
productRefGroup = C0AFBE50228B10FB001E7F53 /* Products */;
132+
projectDirPath = "";
133+
projectRoot = "";
134+
targets = (
135+
C0AFBE4E228B10FB001E7F53 /* FileUploader */,
136+
);
137+
};
138+
/* End PBXProject section */
139+
140+
/* Begin PBXResourcesBuildPhase section */
141+
C0AFBE4D228B10FB001E7F53 /* Resources */ = {
142+
isa = PBXResourcesBuildPhase;
143+
buildActionMask = 2147483647;
144+
files = (
145+
C0AFBE5D228B10FE001E7F53 /* LaunchScreen.storyboard in Resources */,
146+
C0AFBE6A228B112B001E7F53 /* sampleImage.jpg in Resources */,
147+
C0AFBE68228B112B001E7F53 /* samplePDF.pdf in Resources */,
148+
C0AFBE5A228B10FE001E7F53 /* Assets.xcassets in Resources */,
149+
C0AFBE69228B112B001E7F53 /* sampleText.txt in Resources */,
150+
C0AFBE58228B10FB001E7F53 /* Main.storyboard in Resources */,
151+
);
152+
runOnlyForDeploymentPostprocessing = 0;
153+
};
154+
/* End PBXResourcesBuildPhase section */
155+
156+
/* Begin PBXSourcesBuildPhase section */
157+
C0AFBE4B228B10FB001E7F53 /* Sources */ = {
158+
isa = PBXSourcesBuildPhase;
159+
buildActionMask = 2147483647;
160+
files = (
161+
C0AFBE6C228B1150001E7F53 /* RestManager.swift in Sources */,
162+
C0AFBE55228B10FB001E7F53 /* ViewController.swift in Sources */,
163+
C0AFBE53228B10FB001E7F53 /* AppDelegate.swift in Sources */,
164+
);
165+
runOnlyForDeploymentPostprocessing = 0;
166+
};
167+
/* End PBXSourcesBuildPhase section */
168+
169+
/* Begin PBXVariantGroup section */
170+
C0AFBE56228B10FB001E7F53 /* Main.storyboard */ = {
171+
isa = PBXVariantGroup;
172+
children = (
173+
C0AFBE57228B10FB001E7F53 /* Base */,
174+
);
175+
name = Main.storyboard;
176+
sourceTree = "<group>";
177+
};
178+
C0AFBE5B228B10FE001E7F53 /* LaunchScreen.storyboard */ = {
179+
isa = PBXVariantGroup;
180+
children = (
181+
C0AFBE5C228B10FE001E7F53 /* Base */,
182+
);
183+
name = LaunchScreen.storyboard;
184+
sourceTree = "<group>";
185+
};
186+
/* End PBXVariantGroup section */
187+
188+
/* Begin XCBuildConfiguration section */
189+
C0AFBE5F228B10FE001E7F53 /* Debug */ = {
190+
isa = XCBuildConfiguration;
191+
buildSettings = {
192+
ALWAYS_SEARCH_USER_PATHS = NO;
193+
CLANG_ANALYZER_NONNULL = YES;
194+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
195+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
196+
CLANG_CXX_LIBRARY = "libc++";
197+
CLANG_ENABLE_MODULES = YES;
198+
CLANG_ENABLE_OBJC_ARC = YES;
199+
CLANG_ENABLE_OBJC_WEAK = YES;
200+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
201+
CLANG_WARN_BOOL_CONVERSION = YES;
202+
CLANG_WARN_COMMA = YES;
203+
CLANG_WARN_CONSTANT_CONVERSION = YES;
204+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
205+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
206+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
207+
CLANG_WARN_EMPTY_BODY = YES;
208+
CLANG_WARN_ENUM_CONVERSION = YES;
209+
CLANG_WARN_INFINITE_RECURSION = YES;
210+
CLANG_WARN_INT_CONVERSION = YES;
211+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
212+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
213+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
214+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
215+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
216+
CLANG_WARN_STRICT_PROTOTYPES = YES;
217+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
218+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
219+
CLANG_WARN_UNREACHABLE_CODE = YES;
220+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
221+
CODE_SIGN_IDENTITY = "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 = gnu11;
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 = 12.2;
241+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
242+
MTL_FAST_MATH = YES;
243+
ONLY_ACTIVE_ARCH = YES;
244+
SDKROOT = iphoneos;
245+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
246+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
247+
};
248+
name = Debug;
249+
};
250+
C0AFBE60228B10FE001E7F53 /* Release */ = {
251+
isa = XCBuildConfiguration;
252+
buildSettings = {
253+
ALWAYS_SEARCH_USER_PATHS = NO;
254+
CLANG_ANALYZER_NONNULL = YES;
255+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
256+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
257+
CLANG_CXX_LIBRARY = "libc++";
258+
CLANG_ENABLE_MODULES = YES;
259+
CLANG_ENABLE_OBJC_ARC = YES;
260+
CLANG_ENABLE_OBJC_WEAK = YES;
261+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
262+
CLANG_WARN_BOOL_CONVERSION = YES;
263+
CLANG_WARN_COMMA = YES;
264+
CLANG_WARN_CONSTANT_CONVERSION = YES;
265+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
266+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
267+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
268+
CLANG_WARN_EMPTY_BODY = YES;
269+
CLANG_WARN_ENUM_CONVERSION = YES;
270+
CLANG_WARN_INFINITE_RECURSION = YES;
271+
CLANG_WARN_INT_CONVERSION = YES;
272+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
273+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
274+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
275+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
276+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
277+
CLANG_WARN_STRICT_PROTOTYPES = YES;
278+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
279+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
280+
CLANG_WARN_UNREACHABLE_CODE = YES;
281+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
282+
CODE_SIGN_IDENTITY = "iPhone Developer";
283+
COPY_PHASE_STRIP = NO;
284+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
285+
ENABLE_NS_ASSERTIONS = NO;
286+
ENABLE_STRICT_OBJC_MSGSEND = YES;
287+
GCC_C_LANGUAGE_STANDARD = gnu11;
288+
GCC_NO_COMMON_BLOCKS = YES;
289+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
290+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
291+
GCC_WARN_UNDECLARED_SELECTOR = YES;
292+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
293+
GCC_WARN_UNUSED_FUNCTION = YES;
294+
GCC_WARN_UNUSED_VARIABLE = YES;
295+
IPHONEOS_DEPLOYMENT_TARGET = 12.2;
296+
MTL_ENABLE_DEBUG_INFO = NO;
297+
MTL_FAST_MATH = YES;
298+
SDKROOT = iphoneos;
299+
SWIFT_COMPILATION_MODE = wholemodule;
300+
SWIFT_OPTIMIZATION_LEVEL = "-O";
301+
VALIDATE_PRODUCT = YES;
302+
};
303+
name = Release;
304+
};
305+
C0AFBE62228B10FE001E7F53 /* Debug */ = {
306+
isa = XCBuildConfiguration;
307+
buildSettings = {
308+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
309+
CODE_SIGN_STYLE = Automatic;
310+
DEVELOPMENT_TEAM = 9BTCAVN99V;
311+
INFOPLIST_FILE = FileUploader/Info.plist;
312+
LD_RUNPATH_SEARCH_PATHS = (
313+
"$(inherited)",
314+
"@executable_path/Frameworks",
315+
);
316+
PRODUCT_BUNDLE_IDENTIFIER = com.appcoda.FileUploader;
317+
PRODUCT_NAME = "$(TARGET_NAME)";
318+
SWIFT_VERSION = 5.0;
319+
TARGETED_DEVICE_FAMILY = "1,2";
320+
};
321+
name = Debug;
322+
};
323+
C0AFBE63228B10FE001E7F53 /* Release */ = {
324+
isa = XCBuildConfiguration;
325+
buildSettings = {
326+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
327+
CODE_SIGN_STYLE = Automatic;
328+
DEVELOPMENT_TEAM = 9BTCAVN99V;
329+
INFOPLIST_FILE = FileUploader/Info.plist;
330+
LD_RUNPATH_SEARCH_PATHS = (
331+
"$(inherited)",
332+
"@executable_path/Frameworks",
333+
);
334+
PRODUCT_BUNDLE_IDENTIFIER = com.appcoda.FileUploader;
335+
PRODUCT_NAME = "$(TARGET_NAME)";
336+
SWIFT_VERSION = 5.0;
337+
TARGETED_DEVICE_FAMILY = "1,2";
338+
};
339+
name = Release;
340+
};
341+
/* End XCBuildConfiguration section */
342+
343+
/* Begin XCConfigurationList section */
344+
C0AFBE4A228B10FB001E7F53 /* Build configuration list for PBXProject "FileUploader" */ = {
345+
isa = XCConfigurationList;
346+
buildConfigurations = (
347+
C0AFBE5F228B10FE001E7F53 /* Debug */,
348+
C0AFBE60228B10FE001E7F53 /* Release */,
349+
);
350+
defaultConfigurationIsVisible = 0;
351+
defaultConfigurationName = Release;
352+
};
353+
C0AFBE61228B10FE001E7F53 /* Build configuration list for PBXNativeTarget "FileUploader" */ = {
354+
isa = XCConfigurationList;
355+
buildConfigurations = (
356+
C0AFBE62228B10FE001E7F53 /* Debug */,
357+
C0AFBE63228B10FE001E7F53 /* Release */,
358+
);
359+
defaultConfigurationIsVisible = 0;
360+
defaultConfigurationName = Release;
361+
};
362+
/* End XCConfigurationList section */
363+
};
364+
rootObject = C0AFBE47228B10FB001E7F53 /* Project object */;
365+
}

FileUploader/FileUploader.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.
Lines changed: 8 additions & 0 deletions
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>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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>SchemeUserState</key>
6+
<dict>
7+
<key>FileUploader.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>0</integer>
11+
</dict>
12+
</dict>
13+
</dict>
14+
</plist>

0 commit comments

Comments
 (0)