Implement the Compliance library into your application

To implement the Compliance library into your application, do the following:

  1. 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 and CTXMAMAppCore.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 framework

  2. Add Imports

    1. For Objective-C, add CTXMAMCore/CTXMAMCore.h and CTXMAMCompliance/CTXMAMCompliance.h into your AppDelegate.m file.

      #import <CTXMAMCore/CTXMAMCore.h>
      #import <CTXMAMCompliance/CTXMAMCompliance.h>
      <!--NeedCopy-->
      
    2. For Swift, add CTXMAMCore and CTXMAMCompliance into your AppDelegate.swift

      import CTXMAMCore
      import CTXMAMCompliance
      <!--NeedCopy-->
      
Implement the Compliance library into your application

In this article