Skip to content

Commit 9f1fcef

Browse files
author
yep
committed
Initial Commit
0 parents  commit 9f1fcef

37 files changed

+1504
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
xcuserdata

LICENSE

+674
Large diffs are not rendered by default.

QRcoder.xcodeproj/project.pbxproj

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

QRcoder.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>

0 commit comments

Comments
 (0)