> For the complete documentation index, see [llms.txt](https://docs.helix.voodoo.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.helix.voodoo.io/monetization/integrate-the-sdk/applovin-max-adapter/ios-max-adapter.md).

# iOS

This guide covers integrating Helix with AppLovin MAX on **iOS** using **CocoaPods**.

{% hint style="info" %}

* **Minimum supported iOS version:** iOS 14.0
* **Latest adapter version:** 3.17.1.1
* **Latest Helix SDK version:** 3.17.1
  {% endhint %}

{% hint style="info" %}
**Before you start:** complete the mediation setup first — enable Helix on your MAX ad unit in the AppLovin dashboard. See [AppLovin MAX Integration](/monetization/configure-mediations/applovin-max-integration.md).
{% endhint %}

## Configure Podfile

Add the podspec repository and required dependencies to your Podfile.

```ruby
source 'https://github.com/VoodooADN/ios-sdk-podspecs.git'
source 'https://github.com/VoodooADN/ios-sdkextension-podspecs.git'
source 'https://github.com/VoodooADN/ios-applovin-adapter-podspecs.git'
source 'https://framework.voodoo-adn.com/podspecs'
source 'https://cdn.cocoapods.org/' 

platform :ios, '14.0' 
use_frameworks! 

target '[YourApp]' do 
	pod 'VoodooMaxAdapter', '3.17.1.1' 
end
```

{% hint style="info" %} <mark style="color:red;">`use_frameworks!`</mark> is required.
{% endhint %}

## Install dependencies

After updating the Podfile, run: <mark style="color:red;">`pod install`</mark>

Open the generated **.xcworkspace** file in Xcode to continue.

## Configure SKAdNetwork

Add the following entry to your app’s **Info.plist** under <mark style="color:red;">`SKAdNetworkItems`</mark>.

```xml
<key>SKAdNetworkItems</key>
<array>
  <dict>
    <key>SKAdNetworkIdentifier</key>
    <string>tskbem2b5g.skadnetwork</string>
  </dict>
</array>
```

## Build and verify

After installing the pods:

* Build your app in Xcode
* Confirm that:
  * Pods are correctly resolved.
  * No CocoaPods or linker errors occur.
  * <mark style="color:red;">`VoodooMaxAdapter`</mark> is included in the final build.

## Troubleshooting tips

If you encounter dependency or build issues:

* Run <mark style="color:red;">`pod repo update`</mark> and <mark style="color:red;">`pod install`</mark>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.helix.voodoo.io/monetization/integrate-the-sdk/applovin-max-adapter/ios-max-adapter.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
