-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ You have two options, both start from File > Add Packages... in the code menu. | |
First, ensure you have your GitHub account added as an option (+ > Add Source Control Account...). You will need to create a [Personal Access Token](https://github.com/settings/tokens) with the permissions defined in the Xcode interface. | ||
|
||
1. Add as a remote repository | ||
* Search for `[email protected]:spotify/confidence-openfeature-provider-swift.git` and click "Add Package" | ||
* Search for `[email protected]:spotify/confidence-sdk-swift.git` and click "Add Package" | ||
2. Clone the repository locally | ||
* Clone locally using your preferred method | ||
* Use the "Add Local..." button to select the local folder | ||
|
@@ -30,14 +30,14 @@ the relevant OpenFeature SDK dependency manually. | |
<!---x-release-please-start-version--> | ||
In the dependencies section of Package.swift add: | ||
```swift | ||
.package(url: "[email protected]:spotify/confidence-openfeature-provider-swift.git", from: "0.1.4") | ||
.package(url: "[email protected]:spotify/confidence-sdk-swift.git", from: "0.1.4") | ||
``` | ||
<!---x-release-please-end--> | ||
|
||
and in the target dependencies section add: | ||
```swift | ||
.product(name: "ConfidenceProvider", package: "confidence-openfeature-provider-swift"), | ||
.product(name: "Confidence", package: "confidence-openfeature-provider-swift"), | ||
.product(name: "ConfidenceProvider", package: "confidence-sdk-swift"), | ||
.product(name: "Confidence", package: "confidence-sdk-swift"), | ||
``` | ||
|
||
## Usage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: confidence-openfeature-provider-swift | ||
name: confidence-sdk-swift | ||
spec: | ||
type: library | ||
owner: hawkeye |