ObjcLDApplicationInfo

@objc(LDApplicationInfo)
public final class ObjcLDApplicationInfo : NSObject

Use LDApplicationInfo to define application metadata.

These properties are optional and informational. They may be used in LaunchDarkly analytics or other product features, but they do not affect feature flag evaluations.

  • Undocumented

    Declaration

    Swift

    override public init()
  • A unique identifier representing the application where the LaunchDarkly SDK is running.

    This can be specified as any string value as long as it only uses the following characters: ASCII letters, ASCII digits, period, hyphen, underscore. A string containing any other characters will be ignored.

    Declaration

    Swift

    @objc
    public func applicationIdentifier(_ applicationId: String)
  • A unique identifier representing the version of the application where the LaunchDarkly SDK is running.

    This can be specified as any string value as long as it only uses the following characters: ASCII letters, ASCII digits, period, hyphen, underscore. A string containing any other characters will be ignored.

    Declaration

    Swift

    @objc
    public func applicationVersion(_ applicationVersion: String)