DMSLicenseManager


@interface DMSLicenseManager : NSObject

The license manager provides a global place to provide DMSDK your API key. Setting the APIKey property will make that API key available to all classes that normally expect a key. This includes classes like DMSResolver and DMSVideoCaptureReader.

  • The current global API key for DMSDK. Set this value to your API key. If an API key was provided as part of your application’s Info.plist, this will be pre-populated with that value.

    Declaration

    Objective-C

    @property (class, nullable) NSString *APIKey;

    Swift

    class var APIKey: String? { get set }