Skip to content

Commit 8088ade

Browse files
authored
Update project.pbxproj (#39)
* Update project.pbxproj Update Xcode project to depend on library v1.0.0 * add changeme.swift to project * change visibility to package
1 parent f9b0704 commit 8088ade

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

Examples/ios-math-solver/Sources/changeme.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
// to integrate with Sign In With Apple (SIWA), you must prepare your AWS account
1717
// Follow instructions at https://docs.aws.amazon.com/sdk-for-swift/latest/developer-guide/apple-integration.html#apple-sign-in
1818

19-
private let awsAccountNumber = "0000000000" // TODO: Replace with your AWS account number
20-
private let awsIAMRoleName = "your-iam-ios-swift-bedrock-role-name" // TODO: Replace with your IAM role name
19+
let awsAccountNumber = "0000000000" // TODO: Replace with your AWS account number
20+
let awsIAMRoleName = "your-iam-ios-swift-bedrock-role-name" // TODO: Replace with your IAM role name

Examples/ios-math-solver/math.xcodeproj/project.pbxproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
1C1EB1F72E471EA500C5DE46 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C1EB1E92E471EA500C5DE46 /* ContentView.swift */; };
2020
1C1EB1F82E471EA500C5DE46 /* LoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C1EB1EA2E471EA500C5DE46 /* LoginView.swift */; };
2121
1C1EB1FE2E47204100C5DE46 /* BedrockService in Frameworks */ = {isa = PBXBuildFile; productRef = 1C1EB1FD2E47204100C5DE46 /* BedrockService */; };
22+
1C24EDC32E56680B0054568E /* changeme.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C24EDC22E56680B0054568E /* changeme.swift */; };
2223
1C3BC4802E55F8B0008E6904 /* Logging in Frameworks */ = {isa = PBXBuildFile; productRef = 1C3BC47F2E55F8B0008E6904 /* Logging */; };
2324
1CBB02282E54F49A00610FB8 /* BedrockService in Frameworks */ = {isa = PBXBuildFile; productRef = 000E7F392DAF7C8700442BD1 /* BedrockService */; };
2425
/* End PBXBuildFile section */
@@ -35,6 +36,7 @@
3536
1C1EB1EC2E471EA500C5DE46 /* MathSolverApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MathSolverApp.swift; sourceTree = "<group>"; };
3637
1C1EB1ED2E471EA500C5DE46 /* MathSolverViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MathSolverViewModel.swift; sourceTree = "<group>"; };
3738
1C1EB1FF2E4720A700C5DE46 /* math.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = math.entitlements; sourceTree = "<group>"; };
39+
1C24EDC22E56680B0054568E /* changeme.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = changeme.swift; sourceTree = "<group>"; };
3840
/* End PBXFileReference section */
3941

4042
/* Begin PBXFrameworksBuildPhase section */
@@ -88,6 +90,7 @@
8890
1C1EB1EF2E471EA500C5DE46 /* Sources */ = {
8991
isa = PBXGroup;
9092
children = (
93+
1C24EDC22E56680B0054568E /* changeme.swift */,
9194
1C1EB1E52E471EA500C5DE46 /* Preview Content */,
9295
1C1EB1E62E471EA500C5DE46 /* Assets.xcassets */,
9396
1C1EB1E72E471EA500C5DE46 /* AuthenticationManager.swift */,
@@ -187,6 +190,7 @@
187190
buildActionMask = 2147483647;
188191
files = (
189192
1C1EB1F22E471EA500C5DE46 /* MathSolverViewModel.swift in Sources */,
193+
1C24EDC32E56680B0054568E /* changeme.swift in Sources */,
190194
1C1EB1F32E471EA500C5DE46 /* Content.swift in Sources */,
191195
1C1EB1F42E471EA500C5DE46 /* AuthenticationManager.swift in Sources */,
192196
1C1EB1F52E471EA500C5DE46 /* MathSolverApp.swift in Sources */,
@@ -438,8 +442,8 @@
438442
isa = XCRemoteSwiftPackageReference;
439443
repositoryURL = "https://github.com/build-on-aws/swift-bedrock-library";
440444
requirement = {
441-
branch = "sebsto/ios-demo";
442-
kind = branch;
445+
kind = upToNextMajorVersion;
446+
minimumVersion = 1.0.0;
443447
};
444448
};
445449
1C3BC47E2E55F8B0008E6904 /* XCRemoteSwiftPackageReference "swift-log" */ = {

0 commit comments

Comments
 (0)