Skip to content

Commit 823420a

Browse files
committed
updated an example app
1 parent 2846c1e commit 823420a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Example/DeveloperSupportStoreExamplePackage/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let package = Package(
1919
.target(
2020
name: "DeveloperSupportStoreExampleFeature",
2121
dependencies: [
22-
.product(name: "DeveloperSupportStore", package: "phoenix-v1"),
22+
.product(name: "DeveloperSupportStore", package: "DeveloperSupportStore"),
2323
]
2424
),
2525
.testTarget(

Example/DeveloperSupportStoreExamplePackage/Sources/DeveloperSupportStoreExampleFeature/ContentView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ import SwiftUI
1414
/// Product IDs are loaded automatically from Products.plist by StoreHelper.
1515
public struct ExampleStoreConfiguration: StoreConfigurationProtocol {
1616
public var privacyPolicyURL: URL {
17-
URL(string: "https://example.com/privacy")!
17+
URL(string: "https://igrsoft.com/info/app/developersupporstoreapp/policy.html")!
1818
}
1919

2020
public var termsOfUseURL: URL {
21-
URL(string: "https://example.com/terms")!
21+
URL(string: "https://igrsoft.com/info/app/developersupporstoreapp/terms.html")!
2222
}
2323

2424
public init() {}

0 commit comments

Comments
 (0)