Skip to content

Commit 283b9a0

Browse files
authoredJun 6, 2020
Merge pull request #2 from achirkof/feature/loading-from-assets
Feature/loading from assets
2 parents 1e6e7d2 + 309e06f commit 283b9a0

Some content is hidden

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

42 files changed

+702
-379
lines changed
 

‎Example/Example.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
/* End PBXCopyFilesBuildPhase section */
4040

4141
/* Begin PBXFileReference section */
42-
9218E660247AB2CD0014054A /* LoadableImage */ = {isa = PBXFileReference; lastKnownFileType = folder; name = LoadableImage; path = ..; sourceTree = "<group>"; };
42+
928EA767248258C7000DF9DC /* LoadableImage */ = {isa = PBXFileReference; lastKnownFileType = folder; name = LoadableImage; path = ..; sourceTree = "<group>"; };
4343
92BAB016240ACE8E00F3A3A8 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
4444
92EDE1EE23CB7D2800D6C26C /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
4545
92EDE1F123CB7D2800D6C26C /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
@@ -72,7 +72,7 @@
7272
92EDE1E523CB7D2800D6C26C = {
7373
isa = PBXGroup;
7474
children = (
75-
9218E660247AB2CD0014054A /* LoadableImage */,
75+
928EA767248258C7000DF9DC /* LoadableImage */,
7676
92EDE1F023CB7D2800D6C26C /* Example */,
7777
92EDE1EF23CB7D2800D6C26C /* Products */,
7878
92EDE21323CB7DB800D6C26C /* Frameworks */,
@@ -367,6 +367,7 @@
367367
92EDE20E23CB7D2A00D6C26C /* Debug */ = {
368368
isa = XCBuildConfiguration;
369369
buildSettings = {
370+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
370371
CODE_SIGN_STYLE = Automatic;
371372
DEVELOPMENT_ASSET_PATHS = "";
372373
DEVELOPMENT_TEAM = MMS552F7Y5;
@@ -386,6 +387,7 @@
386387
92EDE20F23CB7D2A00D6C26C /* Release */ = {
387388
isa = XCBuildConfiguration;
388389
buildSettings = {
390+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
389391
CODE_SIGN_STYLE = Automatic;
390392
DEVELOPMENT_ASSET_PATHS = "";
391393
DEVELOPMENT_TEAM = MMS552F7Y5;

‎Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme

+9-6
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,19 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29-
shouldUseLaunchSchemeArgsEnv = "YES">
29+
shouldUseLaunchSchemeArgsEnv = "YES"
30+
codeCoverageEnabled = "YES">
3031
<Testables>
3132
<TestableReference
32-
skipped = "NO">
33+
skipped = "NO"
34+
parallelizable = "YES"
35+
testExecutionOrdering = "random">
3336
<BuildableReference
3437
BuildableIdentifier = "primary"
35-
BlueprintIdentifier = "92EDE20323CB7D2A00D6C26C"
36-
BuildableName = "ExampleTests.xctest"
37-
BlueprintName = "ExampleTests"
38-
ReferencedContainer = "container:Example.xcodeproj">
38+
BlueprintIdentifier = "LoadableImageTests"
39+
BuildableName = "LoadableImageTests"
40+
BlueprintName = "LoadableImageTests"
41+
ReferencedContainer = "container:..">
3942
</BuildableReference>
4043
</TestableReference>
4144
</Testables>

0 commit comments

Comments
 (0)
Please sign in to comment.