Skip to content

Commit

Permalink
Merge pull request #23 from jjrscott/example-build-failure
Browse files Browse the repository at this point in the history
Fix BillboardExample build failure
  • Loading branch information
hiddevdploeg authored Oct 29, 2023
2 parents 267779b + 6783259 commit c46045e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 31 deletions.
27 changes: 11 additions & 16 deletions Example/BillboardExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
archiveVersion = 1;
classes = {
};
objectVersion = 56;
objectVersion = 60;
objects = {

/* Begin PBXBuildFile section */
05891B322AA156F900766C4E /* Billboard in Frameworks */ = {isa = PBXBuildFile; productRef = 05891B312AA156F900766C4E /* Billboard */; };
802C223B2A507FD600059D21 /* BillboardExampleApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 802C223A2A507FD600059D21 /* BillboardExampleApp.swift */; };
802C223D2A507FD600059D21 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 802C223C2A507FD600059D21 /* ContentView.swift */; };
802C223F2A507FD700059D21 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 802C223E2A507FD700059D21 /* Assets.xcassets */; };
802C22422A507FD700059D21 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 802C22412A507FD700059D21 /* Preview Assets.xcassets */; };
802C22502A508DC000059D21 /* Billboard in Frameworks */ = {isa = PBXBuildFile; productRef = 802C224F2A508DC000059D21 /* Billboard */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -27,7 +27,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
802C22502A508DC000059D21 /* Billboard in Frameworks */,
05891B322AA156F900766C4E /* Billboard in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -86,7 +86,7 @@
);
name = BillboardExample;
packageProductDependencies = (
802C224F2A508DC000059D21 /* Billboard */,
05891B312AA156F900766C4E /* Billboard */,
);
productName = BillboardExample;
productReference = 802C22372A507FD600059D21 /* BillboardExample.app */;
Expand Down Expand Up @@ -117,7 +117,7 @@
);
mainGroup = 802C222E2A507FD600059D21;
packageReferences = (
802C224E2A508DC000059D21 /* XCRemoteSwiftPackageReference "Billboard" */,
05891B302AA156F900766C4E /* XCLocalSwiftPackageReference ".." */,
);
productRefGroup = 802C22382A507FD600059D21 /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -346,21 +346,16 @@
};
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
802C224E2A508DC000059D21 /* XCRemoteSwiftPackageReference "Billboard" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/hiddevdploeg/Billboard.git";
requirement = {
branch = main;
kind = branch;
};
/* Begin XCLocalSwiftPackageReference section */
05891B302AA156F900766C4E /* XCLocalSwiftPackageReference ".." */ = {
isa = XCLocalSwiftPackageReference;
relativePath = ..;
};
/* End XCRemoteSwiftPackageReference section */
/* End XCLocalSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
802C224F2A508DC000059D21 /* Billboard */ = {
05891B312AA156F900766C4E /* Billboard */ = {
isa = XCSwiftPackageProductDependency;
package = 802C224E2A508DC000059D21 /* XCRemoteSwiftPackageReference "Billboard" */;
productName = Billboard;
};
/* End XCSwiftPackageProductDependency section */
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion Sources/Billboard/Utilities/Font+iOS15.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import SwiftUI

extension Font {
static func compatibleSystem(_ style: TextStyle, design: Design?, weight: Weight?) -> Font {
public static func compatibleSystem(_ style: TextStyle, design: Design?, weight: Weight?) -> Font {
if #available(iOS 16.0, *) {
return .system(style, design: design, weight: weight)
} else {
Expand Down

0 comments on commit c46045e

Please sign in to comment.