Implement the Compliance library into your application
To implement the Compliance library into your application, do the following:
-
Add
CTXMAMCompliance.framework
to your project on the project target properties, under the General tab if you haven’t already added it.Note:
Add the
CTXMAMCore.framework
andCTXMAMAppCore.framework
if you have not added them already. See Integrate MAM SDK to confirm that you have already added the frameworks. If you are not using the framework, ensure that you remove it.If you are running Xcode 11 or later, add the frameworks in the Frameworks, Libraries, and Embedded Content section. Now select Embed & Sign option from the Embed drop-down list.
If you are running any other version of Xcode, add the frameworks to the Embedded Binaries section.
-
Add Imports
-
For Objective-C, add
CTXMAMCore/CTXMAMCore.h
andCTXMAMCompliance/CTXMAMCompliance.h
into yourAppDelegate.m
file.#import <CTXMAMCore/CTXMAMCore.h> #import <CTXMAMCompliance/CTXMAMCompliance.h> <!--NeedCopy-->
-
For Swift, add
CTXMAMCore
andCTXMAMCompliance
into yourAppDelegate.swift
import CTXMAMCore import CTXMAMCompliance <!--NeedCopy-->
-