Skip to content

Commit 599ba1d

Browse files
authored
Merge pull request #106 from skydoves/fix/ios-error
Fix iOSApp build error
2 parents 911739b + e10a976 commit 599ba1d

File tree

4 files changed

+66
-8
lines changed

4 files changed

+66
-8
lines changed

iosApp/iosApp.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@
7676
isa = PBXNativeTarget;
7777
buildConfigurationList = 7555FF8F242A565B00829871 /* Build configuration list for PBXNativeTarget "iosApp" */;
7878
buildPhases = (
79+
F85CB1118929364A00FDF5E5 /* Compile Kotlin Framework */,
7980
7555FF77242A565900829871 /* Sources */,
8081
7555FF78242A565900829871 /* Frameworks */,
8182
7555FF79242A565900829871 /* Resources */,
82-
F85CB1118929364A00FDF5E5 /* Embed Frameworks */,
8383
);
8484
buildRules = (
8585
);
@@ -136,7 +136,7 @@
136136
/* End PBXResourcesBuildPhase section */
137137

138138
/* Begin PBXShellScriptBuildPhase section */
139-
F85CB1118929364A00FDF5E5 /* Embed Frameworks */ = {
139+
F85CB1118929364A00FDF5E5 /* Compile Kotlin Framework */ = {
140140
isa = PBXShellScriptBuildPhase;
141141
buildActionMask = 2147483647;
142142
files = (
@@ -145,7 +145,7 @@
145145
);
146146
inputPaths = (
147147
);
148-
name = "Embed Frameworks";
148+
name = "Compile Kotlin Framework";
149149
outputFileListPaths = (
150150
);
151151
outputPaths = (
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Bucket
3+
uuid = "E5B8B9C1-F91F-4AC8-A105-C3D99CC7AD1B"
4+
type = "1"
5+
version = "2.0">
6+
<Breakpoints>
7+
<BreakpointProxy
8+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
9+
<BreakpointContent
10+
uuid = "D5FCC944-8EBB-456F-99E1-F3EEFD845D3F"
11+
shouldBeEnabled = "Yes"
12+
ignoreCount = "0"
13+
continueAfterRunningActions = "No"
14+
filePath = "iosApp/ContentView.swift"
15+
startingColumnNumber = "9223372036854775807"
16+
endingColumnNumber = "9223372036854775807"
17+
startingLineNumber = "6"
18+
endingLineNumber = "6"
19+
landmarkName = "ComposeView"
20+
landmarkType = "14">
21+
</BreakpointContent>
22+
</BreakpointProxy>
23+
</Breakpoints>
24+
</Bucket>
Lines changed: 39 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
version = "1.3">
4-
<BuildAction>
3+
version = "1.7">
4+
<BuildAction
5+
parallelizeBuildables = "YES"
6+
buildImplicitDependencies = "YES">
57
<BuildActionEntries>
68
<BuildActionEntry
7-
buildForRunning = "YES">
9+
buildForTesting = "YES"
10+
buildForRunning = "YES"
11+
buildForProfiling = "YES"
12+
buildForArchiving = "YES"
13+
buildForAnalyzing = "YES">
814
<BuildableReference
915
BuildableIdentifier = "primary"
1016
BlueprintIdentifier = "7555FF7A242A565900829871"
@@ -15,11 +21,25 @@
1521
</BuildActionEntry>
1622
</BuildActionEntries>
1723
</BuildAction>
24+
<TestAction
25+
buildConfiguration = "Debug"
26+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
27+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
28+
shouldUseLaunchSchemeArgsEnv = "YES"
29+
shouldAutocreateTestPlan = "YES">
30+
</TestAction>
1831
<LaunchAction
19-
useCustomWorkingDirectory = "NO"
2032
buildConfiguration = "Debug"
33+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
34+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
35+
launchStyle = "0"
36+
useCustomWorkingDirectory = "NO"
37+
ignoresPersistentStateOnLaunch = "NO"
38+
debugDocumentVersioning = "YES"
39+
debugServiceExtension = "internal"
2140
allowLocationSimulation = "YES">
22-
<BuildableProductRunnable>
41+
<BuildableProductRunnable
42+
runnableDebuggingMode = "0">
2343
<BuildableReference
2444
BuildableIdentifier = "primary"
2545
BlueprintIdentifier = "7555FF7A242A565900829871"
@@ -29,4 +49,18 @@
2949
</BuildableReference>
3050
</BuildableProductRunnable>
3151
</LaunchAction>
52+
<ProfileAction
53+
buildConfiguration = "Release"
54+
shouldUseLaunchSchemeArgsEnv = "YES"
55+
savedToolIdentifier = ""
56+
useCustomWorkingDirectory = "NO"
57+
debugDocumentVersioning = "YES">
58+
</ProfileAction>
59+
<AnalyzeAction
60+
buildConfiguration = "Debug">
61+
</AnalyzeAction>
62+
<ArchiveAction
63+
buildConfiguration = "Release"
64+
revealArchiveInOrganizer = "YES">
65+
</ArchiveAction>
3266
</Scheme>

0 commit comments

Comments
 (0)