Skip to content

Commit 25c7c79

Browse files
committed
First version of sample project
1 parent cb06bb0 commit 25c7c79

File tree

15 files changed

+714
-0
lines changed

15 files changed

+714
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,4 @@ fastlane/test_output
8888
# https://github.com/johnno1962/injectionforxcode
8989

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

demo/IntroductionToCoreImage.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)