FirebaseAuth Framework Reference

ActionCodeSettings

class ActionCodeSettings : NSObject

Used to set and retrieve settings related to handling action codes.

  • url

    This URL represents the state/Continue URL in the form of a universal link. This URL can should be constructed as a universal link that would either directly open the app where the action code would be handled or continue to the app after the action code is handled by Firebase.

    Declaration

    Swift

    var url: URL? { get set }
  • Indicates whether the action code link will open the app directly or after being redirected from a Firebase owned web widget.

    Declaration

    Swift

    var handleCodeInApp: Bool { get set }
  • The iOS bundle ID, if available. The default value is the current app’s bundle ID.

    Declaration

    Swift

    var iOSBundleID: String? { get }
  • The Android package name, if available.

    Declaration

    Swift

    var androidPackageName: String? { get }
  • The minimum Android version supported, if available.

    Declaration

    Swift

    var androidMinimumVersion: String? { get }
  • Indicates whether the Android app should be installed on a device where it is not available.

    Declaration

    Swift

    var androidInstallIfNotAvailable: Bool { get }
  • The Firebase Dynamic Link domain used for out of band code flow.

    Declaration

    Swift

    var dynamicLinkDomain: String? { get set }
  • Sets the Android package name, the flag to indicate whether or not to install the app and the minimum Android version supported.

    Declaration

    Swift

    func setAndroidPackageName(_ androidPackageName: String, installIfNotAvailable: Bool, minimumVersion: String?)

    Parameters

    androidPackageName

    The Android package name.

    installIfNotAvailable

    Indicates whether or not the app should be installed if not available.

    minimumVersion

    The minimum version of Android supported. If installIfNotAvailable is set to YES and the link is opened on an android device, it will try to install the app if not already available. Otherwise the web URL is used.