Advanced integration - cleveradssolutions/CAS-iOS GitHub Wiki

Advanced integration makes it possible to choose any variations of mediation networks. Feel free not to use ready-made (Optimal or Families) solutions, and choose which mediated ad networks you want to integrate by copy following dependencies to Podfile:

[!WARNING]

  • When you are not using a ready-made solution, you must add a CleverAdsSolutions-Base dependency.
  • Adapters pod always have a version that matches the CAS Base version for compatibility.

All adapters for supported networks are found in the CleverAdsSolutions-SDK pod group, and do not require additional SDK dependencies to be added.

  pod 'CleverAdsSolutions-Base', $casVersion
  
  # The following ad pods are available for monetization to everyone
  pod 'CleverAdsSolutions-SDK/GoogleAds', $casVersion
  pod 'CleverAdsSolutions-SDK/UnityAds', $casVersion
  pod 'CleverAdsSolutions-SDK/IronSource', $casVersion
  pod 'CleverAdsSolutions-SDK/LiftoffMonetize', $casVersion
  pod 'CleverAdsSolutions-SDK/InMobi', $casVersion
  pod 'CleverAdsSolutions-SDK/Kidoz', $casVersion
  pod 'CleverAdsSolutions-SDK/SuperAwesome', $casVersion
  pod 'CleverAdsSolutions-SDK/Mintegral', $casVersion
  pod 'CleverAdsSolutions-SDK/Chartboost', $casVersion
  pod 'CleverAdsSolutions-SDK/DTExchange', $casVersion

  # The following ad pods do NOT provide monetization 
  # for Children audience.
  pod 'CleverAdsSolutions-SDK/AppLovin', $casVersion
  pod 'CleverAdsSolutions-SDK/Pangle', $casVersion
  pod 'CleverAdsSolutions-SDK/AudienceNetwork', $casVersion
  pod 'CleverAdsSolutions-SDK/MyTarget', $casVersion
  pod 'CleverAdsSolutions-SDK/Bigo', $casVersion

  # The following ad pods do NOT provide monetization 
  # in COPPA protected regions
  pod 'CleverAdsSolutions-SDK/YandexAds', $casVersion

After any change to Podfile, you need to run a terminal command to apply the changes:

pod update

[!NOTE]

  • The MyTarget is focused on the CIS region only.

Closed beta ad SDKs

[!WARNING]
Access to the monetization of the beta ad sources is closed.
If you would like to monetize by one of these ad sources, please contact your account manager.

  pod 'CleverAdsSolutions-SDK/StartIO', $casVersion
  pod 'CleverAdsSolutions-SDK/Madex', $casVersion
  pod 'CleverAdsSolutions-SDK/HyprMX', $casVersion
  pod 'CleverAdsSolutions-SDK/Smaato', $casVersion

[!NOTE]

  • The Madex is focused on the CIS region only.
  • The HyprMX is focused on the USA and Canada regions only and your apps must be approved for monetization.
  • The Smaato is support Banner ads only.

Cross-promotion

Cross promotion is an app marketing strategy in which app developers promote one of their titles on another one of their titles. Cross promoting is especially effective for developers with large portfolios of games as a means to move users across titles and use the opportunity to scale each of their apps. This is most commonly used by hyper-casual publishers who have relatively low retention, and use cross promotion to keep users within their app portfolio.

  pod 'CleverAdsSolutions-SDK/CrossPromo', $casVersion

[!NOTE]
Contact our account manager if you are interested in cross-promotion.


🔗 Done! What’s Next?