Skip to content

Commit a3e104f

Browse files
committed
initial commit
1 parent f19a054 commit a3e104f

File tree

80 files changed

+7857
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+7857
-2
lines changed

.gitignore

Whitespace-only changes.

Encantus.xcodeproj/project.pbxproj

+73-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 55;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
19EEA4603448987F8BEA9560 /* Pods_Encantus.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 979D95FC325A954FDA5C6089 /* Pods_Encantus.framework */; };
1011
41CBDDD7268B6829003C4966 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41CBDDD6268B6829003C4966 /* AppDelegate.swift */; };
1112
41CBDDD9268B6829003C4966 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41CBDDD8268B6829003C4966 /* SceneDelegate.swift */; };
1213
41CBDDDB268B6829003C4966 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41CBDDDA268B6829003C4966 /* ViewController.swift */; };
@@ -17,6 +18,7 @@
1718
/* End PBXBuildFile section */
1819

1920
/* Begin PBXFileReference section */
21+
28EFC4F2CB09FE83A0A1BEF9 /* Pods-Encantus.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Encantus.release.xcconfig"; path = "Target Support Files/Pods-Encantus/Pods-Encantus.release.xcconfig"; sourceTree = "<group>"; };
2022
41CBDDD3268B6829003C4966 /* Encantus.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Encantus.app; sourceTree = BUILT_PRODUCTS_DIR; };
2123
41CBDDD6268B6829003C4966 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
2224
41CBDDD8268B6829003C4966 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
@@ -26,24 +28,47 @@
2628
41CBDDE2268B6829003C4966 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
2729
41CBDDE5268B6829003C4966 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
2830
41CBDDE7268B6829003C4966 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
31+
979D95FC325A954FDA5C6089 /* Pods_Encantus.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Encantus.framework; sourceTree = BUILT_PRODUCTS_DIR; };
32+
A9B3584E9CF2A3AED2D72CF4 /* Pods-Encantus.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Encantus.debug.xcconfig"; path = "Target Support Files/Pods-Encantus/Pods-Encantus.debug.xcconfig"; sourceTree = "<group>"; };
2933
/* End PBXFileReference section */
3034

3135
/* Begin PBXFrameworksBuildPhase section */
3236
41CBDDD0268B6829003C4966 /* Frameworks */ = {
3337
isa = PBXFrameworksBuildPhase;
3438
buildActionMask = 2147483647;
3539
files = (
40+
19EEA4603448987F8BEA9560 /* Pods_Encantus.framework in Frameworks */,
3641
);
3742
runOnlyForDeploymentPostprocessing = 0;
3843
};
3944
/* End PBXFrameworksBuildPhase section */
4045

4146
/* Begin PBXGroup section */
47+
08E70DD33ACE50ADC616022A /* Pods */ = {
48+
isa = PBXGroup;
49+
children = (
50+
A9B3584E9CF2A3AED2D72CF4 /* Pods-Encantus.debug.xcconfig */,
51+
28EFC4F2CB09FE83A0A1BEF9 /* Pods-Encantus.release.xcconfig */,
52+
);
53+
name = Pods;
54+
path = Pods;
55+
sourceTree = "<group>";
56+
};
57+
0AFD42B0C257C378C037DC0B /* Frameworks */ = {
58+
isa = PBXGroup;
59+
children = (
60+
979D95FC325A954FDA5C6089 /* Pods_Encantus.framework */,
61+
);
62+
name = Frameworks;
63+
sourceTree = "<group>";
64+
};
4265
41CBDDCA268B6829003C4966 = {
4366
isa = PBXGroup;
4467
children = (
4568
41CBDDD5268B6829003C4966 /* Encantus */,
4669
41CBDDD4268B6829003C4966 /* Products */,
70+
08E70DD33ACE50ADC616022A /* Pods */,
71+
0AFD42B0C257C378C037DC0B /* Frameworks */,
4772
);
4873
sourceTree = "<group>";
4974
};
@@ -77,9 +102,11 @@
77102
isa = PBXNativeTarget;
78103
buildConfigurationList = 41CBDDEA268B6829003C4966 /* Build configuration list for PBXNativeTarget "Encantus" */;
79104
buildPhases = (
105+
F82658927A58A386514DDB25 /* [CP] Check Pods Manifest.lock */,
80106
41CBDDCF268B6829003C4966 /* Sources */,
81107
41CBDDD0268B6829003C4966 /* Frameworks */,
82108
41CBDDD1268B6829003C4966 /* Resources */,
109+
86B6E60FD6933F0466E07681 /* [CP] Embed Pods Frameworks */,
83110
);
84111
buildRules = (
85112
);
@@ -106,7 +133,7 @@
106133
};
107134
};
108135
buildConfigurationList = 41CBDDCE268B6829003C4966 /* Build configuration list for PBXProject "Encantus" */;
109-
compatibilityVersion = "Xcode 13.0";
136+
compatibilityVersion = "Xcode 12.0";
110137
developmentRegion = en;
111138
hasScannedForEncodings = 0;
112139
knownRegions = (
@@ -136,6 +163,48 @@
136163
};
137164
/* End PBXResourcesBuildPhase section */
138165

166+
/* Begin PBXShellScriptBuildPhase section */
167+
86B6E60FD6933F0466E07681 /* [CP] Embed Pods Frameworks */ = {
168+
isa = PBXShellScriptBuildPhase;
169+
buildActionMask = 2147483647;
170+
files = (
171+
);
172+
inputFileListPaths = (
173+
"${PODS_ROOT}/Target Support Files/Pods-Encantus/Pods-Encantus-frameworks-${CONFIGURATION}-input-files.xcfilelist",
174+
);
175+
name = "[CP] Embed Pods Frameworks";
176+
outputFileListPaths = (
177+
"${PODS_ROOT}/Target Support Files/Pods-Encantus/Pods-Encantus-frameworks-${CONFIGURATION}-output-files.xcfilelist",
178+
);
179+
runOnlyForDeploymentPostprocessing = 0;
180+
shellPath = /bin/sh;
181+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Encantus/Pods-Encantus-frameworks.sh\"\n";
182+
showEnvVarsInLog = 0;
183+
};
184+
F82658927A58A386514DDB25 /* [CP] Check Pods Manifest.lock */ = {
185+
isa = PBXShellScriptBuildPhase;
186+
buildActionMask = 2147483647;
187+
files = (
188+
);
189+
inputFileListPaths = (
190+
);
191+
inputPaths = (
192+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
193+
"${PODS_ROOT}/Manifest.lock",
194+
);
195+
name = "[CP] Check Pods Manifest.lock";
196+
outputFileListPaths = (
197+
);
198+
outputPaths = (
199+
"$(DERIVED_FILE_DIR)/Pods-Encantus-checkManifestLockResult.txt",
200+
);
201+
runOnlyForDeploymentPostprocessing = 0;
202+
shellPath = /bin/sh;
203+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
204+
showEnvVarsInLog = 0;
205+
};
206+
/* End PBXShellScriptBuildPhase section */
207+
139208
/* Begin PBXSourcesBuildPhase section */
140209
41CBDDCF268B6829003C4966 /* Sources */ = {
141210
isa = PBXSourcesBuildPhase;
@@ -288,6 +357,7 @@
288357
};
289358
41CBDDEB268B6829003C4966 /* Debug */ = {
290359
isa = XCBuildConfiguration;
360+
baseConfigurationReference = A9B3584E9CF2A3AED2D72CF4 /* Pods-Encantus.debug.xcconfig */;
291361
buildSettings = {
292362
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
293363
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
@@ -316,6 +386,7 @@
316386
};
317387
41CBDDEC268B6829003C4966 /* Release */ = {
318388
isa = XCBuildConfiguration;
389+
baseConfigurationReference = 28EFC4F2CB09FE83A0A1BEF9 /* Pods-Encantus.release.xcconfig */;
319390
buildSettings = {
320391
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
321392
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;

Encantus.xcworkspace/contents.xcworkspacedata

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Podfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
platform :ios, '9.0'
2+
3+
target 'Encantus' do
4+
# Comment the next line if you don't want to use dynamic frameworks
5+
use_frameworks!
6+
7+
# Pods for Encantus
8+
pod 'Hero'
9+
10+
end

Podfile.lock

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
PODS:
2+
- Hero (1.5.0)
3+
4+
DEPENDENCIES:
5+
- Hero
6+
7+
SPEC REPOS:
8+
trunk:
9+
- Hero
10+
11+
SPEC CHECKSUMS:
12+
Hero: b7385b75e7259da62f4f85462f59a5082d66b058
13+
14+
PODFILE CHECKSUM: 2576f3ca605dc39acceb2b65626f44c6c767b5ee
15+
16+
COCOAPODS: 1.10.1

Pods/Hero/LICENSE

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Hero/README.md

+178
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)