You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The Bundle ID for the your application. Defaults to "Bundle.main.bundleIdentifier".
31
+
letbundleID:String?
32
+
30
33
/// The region or country of an App Store in which the app is available.
31
34
letcountry:AppStoreCountry
32
35
33
36
/// The language for the localization of App Store responses.
34
37
letlanguage:String?
35
-
36
-
/// The bundleID for the App Store retrieved. Defaults to "Bundle.main.bundleIdentifier".
37
-
letbundleID:String?
38
38
39
39
/// Initializes `APIManager` to the region or country of an App Store in which the app is available.
40
40
/// By default, all version check requests are performed against the US App Store and the language of the copy/text is returned in English.
41
41
/// - Parameters:
42
42
/// - country: The country for the App Store in which the app is available.
43
43
/// - language: The locale to use for the App Store notes. The default result the API returns is equivalent to passing "en_us", so passing `nil` is equivalent to passing "en_us".
44
-
/// - bundleID: The bundleID for the App Store retrieved. Defaults to `Bundle.main.bundleIdentifier`. Passing `nil` will case a `missingBundleID` error.
44
+
/// - bundleID: The bundleID for your app. Defaults to `Bundle.main.bundleIdentifier`. Passing `nil` will throw a `missingBundleID` error.
0 commit comments