Skip to content

Commit 206a207

Browse files
Add initial example project
1 parent 07c706d commit 206a207

11 files changed

Lines changed: 663 additions & 0 deletions

File tree

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

Example App/iOS Example.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>

0 commit comments

Comments
 (0)