Skip to main content

Aila_SetLicenseProfile

Set the profile ID to use for cloud licensing.

Signature

void Aila_SetLicenseProfile(NSString *profile);

Parameters

  • profile - The profile ID string for cloud licensing

Description

Sets the profile ID to use when cloud licensing is enabled. This allows the SDK to automatically retrieve and apply license updates from Aila's cloud service.

Usage

// Enable cloud licensing
AilaConfiguration *config = [[AilaConfiguration alloc] init];
config.cloudLicensing = AilaCloudLicensingOn;
Aila_SetConfiguration(config);

// Set profile ID
Aila_SetLicenseProfile(@"your-profile-id");

See Also