Skip to content

Commit 571569f

Browse files
committed
Add demo project
1 parent fcccf63 commit 571569f

File tree

12 files changed

+747
-0
lines changed

12 files changed

+747
-0
lines changed

KakaJSON.xcworkspace/contents.xcworkspacedata

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

0 commit comments

Comments
 (0)