Skip to content

Commit 5730051

Browse files
committed
Initial commit
0 parents  commit 5730051

39 files changed

+1853
-0
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Mac
2+
.DS_Store
3+
4+
# Xcode
5+
build/*
6+
*.pbxuser
7+
!default.pbxuser
8+
*.mode1v3
9+
!default.mode1v3
10+
*.mode2v3
11+
!default.mode2v3
12+
*.perspectivev3
13+
!default.perspectivev3
14+
xcuserdata
15+
profile
16+
*.moved-aside
17+
DerivedData
18+
.idea/
19+
20+
*.ipa
21+
*.app
22+
23+
*.xccheckout
Lines changed: 368 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,368 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
49588A0F5E1A5829806CF162 /* Pods.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C685BA161AB98E8D668D2F26 /* Pods.framework */; };
11+
93DC8E391BD232CA004BCCBC /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93DC8E381BD232CA004BCCBC /* AppDelegate.swift */; };
12+
93DC8E3B1BD232CA004BCCBC /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93DC8E3A1BD232CA004BCCBC /* ViewController.swift */; };
13+
93DC8E3E1BD232CA004BCCBC /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 93DC8E3C1BD232CA004BCCBC /* Main.storyboard */; };
14+
93DC8E401BD232CA004BCCBC /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 93DC8E3F1BD232CA004BCCBC /* Assets.xcassets */; };
15+
93DC8E431BD232CA004BCCBC /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 93DC8E411BD232CA004BCCBC /* LaunchScreen.storyboard */; };
16+
/* End PBXBuildFile section */
17+
18+
/* Begin PBXFileReference section */
19+
93DC8E351BD232CA004BCCBC /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
20+
93DC8E381BD232CA004BCCBC /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
21+
93DC8E3A1BD232CA004BCCBC /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
22+
93DC8E3D1BD232CA004BCCBC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
23+
93DC8E3F1BD232CA004BCCBC /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
24+
93DC8E421BD232CA004BCCBC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
25+
93DC8E441BD232CA004BCCBC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
26+
C685BA161AB98E8D668D2F26 /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; };
27+
D42EC1139000A3D84FB06E84 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
28+
D8AE4EFA538348ACB2650272 /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
29+
/* End PBXFileReference section */
30+
31+
/* Begin PBXFrameworksBuildPhase section */
32+
93DC8E321BD232CA004BCCBC /* Frameworks */ = {
33+
isa = PBXFrameworksBuildPhase;
34+
buildActionMask = 2147483647;
35+
files = (
36+
49588A0F5E1A5829806CF162 /* Pods.framework in Frameworks */,
37+
);
38+
runOnlyForDeploymentPostprocessing = 0;
39+
};
40+
/* End PBXFrameworksBuildPhase section */
41+
42+
/* Begin PBXGroup section */
43+
93DC8E2C1BD232CA004BCCBC = {
44+
isa = PBXGroup;
45+
children = (
46+
93DC8E371BD232CA004BCCBC /* Example */,
47+
93DC8E361BD232CA004BCCBC /* Products */,
48+
9EA7FF39CD558566D2E77ECE /* Pods */,
49+
C79F23920227BE62A6F5B671 /* Frameworks */,
50+
);
51+
sourceTree = "<group>";
52+
};
53+
93DC8E361BD232CA004BCCBC /* Products */ = {
54+
isa = PBXGroup;
55+
children = (
56+
93DC8E351BD232CA004BCCBC /* Example.app */,
57+
);
58+
name = Products;
59+
sourceTree = "<group>";
60+
};
61+
93DC8E371BD232CA004BCCBC /* Example */ = {
62+
isa = PBXGroup;
63+
children = (
64+
93DC8E381BD232CA004BCCBC /* AppDelegate.swift */,
65+
93DC8E3A1BD232CA004BCCBC /* ViewController.swift */,
66+
93DC8E3C1BD232CA004BCCBC /* Main.storyboard */,
67+
93DC8E3F1BD232CA004BCCBC /* Assets.xcassets */,
68+
93DC8E411BD232CA004BCCBC /* LaunchScreen.storyboard */,
69+
93DC8E441BD232CA004BCCBC /* Info.plist */,
70+
);
71+
path = Example;
72+
sourceTree = "<group>";
73+
};
74+
9EA7FF39CD558566D2E77ECE /* Pods */ = {
75+
isa = PBXGroup;
76+
children = (
77+
D42EC1139000A3D84FB06E84 /* Pods.debug.xcconfig */,
78+
D8AE4EFA538348ACB2650272 /* Pods.release.xcconfig */,
79+
);
80+
name = Pods;
81+
sourceTree = "<group>";
82+
};
83+
C79F23920227BE62A6F5B671 /* Frameworks */ = {
84+
isa = PBXGroup;
85+
children = (
86+
C685BA161AB98E8D668D2F26 /* Pods.framework */,
87+
);
88+
name = Frameworks;
89+
sourceTree = "<group>";
90+
};
91+
/* End PBXGroup section */
92+
93+
/* Begin PBXNativeTarget section */
94+
93DC8E341BD232CA004BCCBC /* Example */ = {
95+
isa = PBXNativeTarget;
96+
buildConfigurationList = 93DC8E471BD232CA004BCCBC /* Build configuration list for PBXNativeTarget "Example" */;
97+
buildPhases = (
98+
EB4F77FD1728592962AC59F6 /* Check Pods Manifest.lock */,
99+
93DC8E311BD232CA004BCCBC /* Sources */,
100+
93DC8E321BD232CA004BCCBC /* Frameworks */,
101+
93DC8E331BD232CA004BCCBC /* Resources */,
102+
CD8A98FF4D5B628D6B928E86 /* Embed Pods Frameworks */,
103+
90808FEE096C6A1E668B9393 /* Copy Pods Resources */,
104+
);
105+
buildRules = (
106+
);
107+
dependencies = (
108+
);
109+
name = Example;
110+
productName = Example;
111+
productReference = 93DC8E351BD232CA004BCCBC /* Example.app */;
112+
productType = "com.apple.product-type.application";
113+
};
114+
/* End PBXNativeTarget section */
115+
116+
/* Begin PBXProject section */
117+
93DC8E2D1BD232CA004BCCBC /* Project object */ = {
118+
isa = PBXProject;
119+
attributes = {
120+
LastUpgradeCheck = 0700;
121+
ORGANIZATIONNAME = "hiroyuki yoshida";
122+
TargetAttributes = {
123+
93DC8E341BD232CA004BCCBC = {
124+
CreatedOnToolsVersion = 7.0.1;
125+
};
126+
};
127+
};
128+
buildConfigurationList = 93DC8E301BD232CA004BCCBC /* Build configuration list for PBXProject "Example" */;
129+
compatibilityVersion = "Xcode 3.2";
130+
developmentRegion = English;
131+
hasScannedForEncodings = 0;
132+
knownRegions = (
133+
en,
134+
Base,
135+
);
136+
mainGroup = 93DC8E2C1BD232CA004BCCBC;
137+
productRefGroup = 93DC8E361BD232CA004BCCBC /* Products */;
138+
projectDirPath = "";
139+
projectRoot = "";
140+
targets = (
141+
93DC8E341BD232CA004BCCBC /* Example */,
142+
);
143+
};
144+
/* End PBXProject section */
145+
146+
/* Begin PBXResourcesBuildPhase section */
147+
93DC8E331BD232CA004BCCBC /* Resources */ = {
148+
isa = PBXResourcesBuildPhase;
149+
buildActionMask = 2147483647;
150+
files = (
151+
93DC8E431BD232CA004BCCBC /* LaunchScreen.storyboard in Resources */,
152+
93DC8E401BD232CA004BCCBC /* Assets.xcassets in Resources */,
153+
93DC8E3E1BD232CA004BCCBC /* Main.storyboard in Resources */,
154+
);
155+
runOnlyForDeploymentPostprocessing = 0;
156+
};
157+
/* End PBXResourcesBuildPhase section */
158+
159+
/* Begin PBXShellScriptBuildPhase section */
160+
90808FEE096C6A1E668B9393 /* Copy Pods Resources */ = {
161+
isa = PBXShellScriptBuildPhase;
162+
buildActionMask = 2147483647;
163+
files = (
164+
);
165+
inputPaths = (
166+
);
167+
name = "Copy Pods Resources";
168+
outputPaths = (
169+
);
170+
runOnlyForDeploymentPostprocessing = 0;
171+
shellPath = /bin/sh;
172+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n";
173+
showEnvVarsInLog = 0;
174+
};
175+
CD8A98FF4D5B628D6B928E86 /* Embed Pods Frameworks */ = {
176+
isa = PBXShellScriptBuildPhase;
177+
buildActionMask = 2147483647;
178+
files = (
179+
);
180+
inputPaths = (
181+
);
182+
name = "Embed Pods Frameworks";
183+
outputPaths = (
184+
);
185+
runOnlyForDeploymentPostprocessing = 0;
186+
shellPath = /bin/sh;
187+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-frameworks.sh\"\n";
188+
showEnvVarsInLog = 0;
189+
};
190+
EB4F77FD1728592962AC59F6 /* Check Pods Manifest.lock */ = {
191+
isa = PBXShellScriptBuildPhase;
192+
buildActionMask = 2147483647;
193+
files = (
194+
);
195+
inputPaths = (
196+
);
197+
name = "Check Pods Manifest.lock";
198+
outputPaths = (
199+
);
200+
runOnlyForDeploymentPostprocessing = 0;
201+
shellPath = /bin/sh;
202+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
203+
showEnvVarsInLog = 0;
204+
};
205+
/* End PBXShellScriptBuildPhase section */
206+
207+
/* Begin PBXSourcesBuildPhase section */
208+
93DC8E311BD232CA004BCCBC /* Sources */ = {
209+
isa = PBXSourcesBuildPhase;
210+
buildActionMask = 2147483647;
211+
files = (
212+
93DC8E3B1BD232CA004BCCBC /* ViewController.swift in Sources */,
213+
93DC8E391BD232CA004BCCBC /* AppDelegate.swift in Sources */,
214+
);
215+
runOnlyForDeploymentPostprocessing = 0;
216+
};
217+
/* End PBXSourcesBuildPhase section */
218+
219+
/* Begin PBXVariantGroup section */
220+
93DC8E3C1BD232CA004BCCBC /* Main.storyboard */ = {
221+
isa = PBXVariantGroup;
222+
children = (
223+
93DC8E3D1BD232CA004BCCBC /* Base */,
224+
);
225+
name = Main.storyboard;
226+
sourceTree = "<group>";
227+
};
228+
93DC8E411BD232CA004BCCBC /* LaunchScreen.storyboard */ = {
229+
isa = PBXVariantGroup;
230+
children = (
231+
93DC8E421BD232CA004BCCBC /* Base */,
232+
);
233+
name = LaunchScreen.storyboard;
234+
sourceTree = "<group>";
235+
};
236+
/* End PBXVariantGroup section */
237+
238+
/* Begin XCBuildConfiguration section */
239+
93DC8E451BD232CA004BCCBC /* Debug */ = {
240+
isa = XCBuildConfiguration;
241+
buildSettings = {
242+
ALWAYS_SEARCH_USER_PATHS = NO;
243+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
244+
CLANG_CXX_LIBRARY = "libc++";
245+
CLANG_ENABLE_MODULES = YES;
246+
CLANG_ENABLE_OBJC_ARC = YES;
247+
CLANG_WARN_BOOL_CONVERSION = YES;
248+
CLANG_WARN_CONSTANT_CONVERSION = YES;
249+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
250+
CLANG_WARN_EMPTY_BODY = YES;
251+
CLANG_WARN_ENUM_CONVERSION = YES;
252+
CLANG_WARN_INT_CONVERSION = YES;
253+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
254+
CLANG_WARN_UNREACHABLE_CODE = YES;
255+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
256+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
257+
COPY_PHASE_STRIP = NO;
258+
DEBUG_INFORMATION_FORMAT = dwarf;
259+
ENABLE_STRICT_OBJC_MSGSEND = YES;
260+
ENABLE_TESTABILITY = YES;
261+
GCC_C_LANGUAGE_STANDARD = gnu99;
262+
GCC_DYNAMIC_NO_PIC = NO;
263+
GCC_NO_COMMON_BLOCKS = YES;
264+
GCC_OPTIMIZATION_LEVEL = 0;
265+
GCC_PREPROCESSOR_DEFINITIONS = (
266+
"DEBUG=1",
267+
"$(inherited)",
268+
);
269+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
270+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
271+
GCC_WARN_UNDECLARED_SELECTOR = YES;
272+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
273+
GCC_WARN_UNUSED_FUNCTION = YES;
274+
GCC_WARN_UNUSED_VARIABLE = YES;
275+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
276+
MTL_ENABLE_DEBUG_INFO = YES;
277+
ONLY_ACTIVE_ARCH = YES;
278+
SDKROOT = iphoneos;
279+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
280+
};
281+
name = Debug;
282+
};
283+
93DC8E461BD232CA004BCCBC /* Release */ = {
284+
isa = XCBuildConfiguration;
285+
buildSettings = {
286+
ALWAYS_SEARCH_USER_PATHS = NO;
287+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
288+
CLANG_CXX_LIBRARY = "libc++";
289+
CLANG_ENABLE_MODULES = YES;
290+
CLANG_ENABLE_OBJC_ARC = YES;
291+
CLANG_WARN_BOOL_CONVERSION = YES;
292+
CLANG_WARN_CONSTANT_CONVERSION = YES;
293+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
294+
CLANG_WARN_EMPTY_BODY = YES;
295+
CLANG_WARN_ENUM_CONVERSION = YES;
296+
CLANG_WARN_INT_CONVERSION = YES;
297+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
298+
CLANG_WARN_UNREACHABLE_CODE = YES;
299+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
300+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
301+
COPY_PHASE_STRIP = NO;
302+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
303+
ENABLE_NS_ASSERTIONS = NO;
304+
ENABLE_STRICT_OBJC_MSGSEND = YES;
305+
GCC_C_LANGUAGE_STANDARD = gnu99;
306+
GCC_NO_COMMON_BLOCKS = YES;
307+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
308+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
309+
GCC_WARN_UNDECLARED_SELECTOR = YES;
310+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
311+
GCC_WARN_UNUSED_FUNCTION = YES;
312+
GCC_WARN_UNUSED_VARIABLE = YES;
313+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
314+
MTL_ENABLE_DEBUG_INFO = NO;
315+
SDKROOT = iphoneos;
316+
VALIDATE_PRODUCT = YES;
317+
};
318+
name = Release;
319+
};
320+
93DC8E481BD232CA004BCCBC /* Debug */ = {
321+
isa = XCBuildConfiguration;
322+
baseConfigurationReference = D42EC1139000A3D84FB06E84 /* Pods.debug.xcconfig */;
323+
buildSettings = {
324+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
325+
INFOPLIST_FILE = Example/Info.plist;
326+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
327+
PRODUCT_BUNDLE_IDENTIFIER = io.github.hryk224.Example;
328+
PRODUCT_NAME = "$(TARGET_NAME)";
329+
};
330+
name = Debug;
331+
};
332+
93DC8E491BD232CA004BCCBC /* Release */ = {
333+
isa = XCBuildConfiguration;
334+
baseConfigurationReference = D8AE4EFA538348ACB2650272 /* Pods.release.xcconfig */;
335+
buildSettings = {
336+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
337+
INFOPLIST_FILE = Example/Info.plist;
338+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
339+
PRODUCT_BUNDLE_IDENTIFIER = io.github.hryk224.Example;
340+
PRODUCT_NAME = "$(TARGET_NAME)";
341+
};
342+
name = Release;
343+
};
344+
/* End XCBuildConfiguration section */
345+
346+
/* Begin XCConfigurationList section */
347+
93DC8E301BD232CA004BCCBC /* Build configuration list for PBXProject "Example" */ = {
348+
isa = XCConfigurationList;
349+
buildConfigurations = (
350+
93DC8E451BD232CA004BCCBC /* Debug */,
351+
93DC8E461BD232CA004BCCBC /* Release */,
352+
);
353+
defaultConfigurationIsVisible = 0;
354+
defaultConfigurationName = Release;
355+
};
356+
93DC8E471BD232CA004BCCBC /* Build configuration list for PBXNativeTarget "Example" */ = {
357+
isa = XCConfigurationList;
358+
buildConfigurations = (
359+
93DC8E481BD232CA004BCCBC /* Debug */,
360+
93DC8E491BD232CA004BCCBC /* Release */,
361+
);
362+
defaultConfigurationIsVisible = 0;
363+
defaultConfigurationName = Release;
364+
};
365+
/* End XCConfigurationList section */
366+
};
367+
rootObject = 93DC8E2D1BD232CA004BCCBC /* Project object */;
368+
}

0 commit comments

Comments
 (0)