// // Copyright (c) 2022 Loverde Co. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. #if canImport(UIKit) #if canImport(UIKit) import UIKit #endif public extension UIApplication { /// Application running environment. /// /// - debug: Application is running in debug mode. /// - testFlight: Application is installed from Test Flight. /// - appStore: Application is installed from the App Store. enum Environment { /// Application is running in debug mode. case debug /// Application is installed from Test Flight. case testFlight /// Application is installed from the App Store. case appStore } /// Current inferred app environment. static var inferredEnvironment: Environment { #if DEBUG return .debug #elseif targetEnvironment(simulator) return .debug #else if Bundle.main.path(forResource: "embedded", ofType: "mobileprovision") != nil { return .testFlight } guard let appStoreReceiptUrl = Bundle.main.appStoreReceiptURL else { return .debug } if appStoreReceiptUrl.lastPathComponent.lowercased() == "sandboxreceipt" { return .testFlight } if appStoreReceiptUrl.path.lowercased().contains("simulator") { return .debug } return .appStore #endif } /// Application name (if applicable). static var displayName: String? { return Bundle.main.object(forInfoDictionaryKey: "CFBundleDisplayName") as? String } /// App current build number (if applicable). static var buildNumber: String? { return Bundle.main.object(forInfoDictionaryKey: kCFBundleVersionKey as String) as? String } /// App's current version number (if applicable). static var version: String? { return Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String } } public extension UIApplication { static func openURL(urlStr: String) { guard let url = URL(string: urlStr) else { return } if UIApplication.shared.canOpenURL(url) { if #available(iOS 10.0, *) { UIApplication.shared.open(url, options: [:], completionHandler: nil) } else { UIApplication.shared.openURL(url) } } else { // App is not installed guard let storeApp = URL(string: urlStr) else { return } if #available(iOS 10.0, *) { UIApplication.shared.open(storeApp, options: [:], completionHandler: nil) } else { UIApplication.shared.openURL(storeApp) } } } } #endif