Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
fix: build issues on fresh workspace
Browse files Browse the repository at this point in the history
### What
attempt to fix build issues on freshly cloned workspace

### How
- downgrade deployment target to 14.1
- add SwiftUI.framework dependency to xcode project
  • Loading branch information
Aguragorn committed Oct 8, 2023
1 parent 688f743 commit 24b4d55
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions examples/iosApp/iosApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
126C2CC92AD2E4A7002BDF98 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 126C2CC82AD2E4A7002BDF98 /* SwiftUI.framework */; };
12A0AD4D2ABB0E4D00FACB56 /* iosAppApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12A0AD4C2ABB0E4D00FACB56 /* iosAppApp.swift */; };
12A0AD4F2ABB0E4D00FACB56 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12A0AD4E2ABB0E4D00FACB56 /* ContentView.swift */; };
12A0AD512ABB0E4F00FACB56 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 12A0AD502ABB0E4F00FACB56 /* Assets.xcassets */; };
Expand All @@ -15,6 +16,7 @@
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
126C2CC82AD2E4A7002BDF98 /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
12A0AD492ABB0E4D00FACB56 /* iosApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iosApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
12A0AD4C2ABB0E4D00FACB56 /* iosAppApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = iosAppApp.swift; sourceTree = "<group>"; };
12A0AD4E2ABB0E4D00FACB56 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
Expand All @@ -30,6 +32,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
126C2CC92AD2E4A7002BDF98 /* SwiftUI.framework in Frameworks */,
E5E7F953E9121AAD5305461D /* Pods_iosApp.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -86,6 +89,7 @@
E4CC1E4E25BFD3CE640B0CD0 /* Frameworks */ = {
isa = PBXGroup;
children = (
126C2CC82AD2E4A7002BDF98 /* SwiftUI.framework */,
8B97AEAAB675D969AA113448 /* Pods_iosApp.framework */,
);
name = Frameworks;
Expand Down Expand Up @@ -284,7 +288,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_KEY_UISupportsDocumentBrowser = YES;
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
Expand Down Expand Up @@ -342,7 +346,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_KEY_UISupportsDocumentBrowser = YES;
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
Expand All @@ -369,6 +373,7 @@
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -399,6 +404,7 @@
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down

0 comments on commit 24b4d55

Please sign in to comment.