forked from arthurhammer/FrameGrabber
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.swift
More file actions
28 lines (23 loc) · 1.01 KB
/
Copy pathAbout.swift
File metadata and controls
28 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import Foundation
struct About {
static let storeURL = URL(string: "") // https://apps.apple.com/app/id1434703541
static let storeReviewURL = URL(string: "") // https://apps.apple.com/app/id1434703541?action=write-review"
static let sourceCodeURL = URL(string: "https://github.com/Mancitiss/FrameGrabber") // https://github.com/arthurhammer/FrameGrabber
static let contactAddress = "vovuongthanhtu@gmail.com" // hi@arthurhammer.de
static let inAppPurchaseIdentifier = "" // de.arthurhammer.framegrabber.thankyou
}
extension About {
struct PrivacyPolicy {
static let en = URL(string: "") // https://framegrabberapp.com/privacy/
static let de = URL(string: "") // https://framegrabberapp.com/datenschutz/
static var preferred: URL? {
let language = Bundle.main.preferredLocalizations.first
switch language {
case "de":
return PrivacyPolicy.de
default:
return PrivacyPolicy.en
}
}
}
}