AppLovin/AppLovin-MAX-React-Native

Incomplete AppLovin Integration

padge opened this issue · 2 comments

padge commented

MAX Module Version

5.7.2

React Native Version

0.71.3

Device/Platform Info

iOS 16.6.1

Current Behavior

AppLovin SDK integration is listed as incomplete in the meditation debugger, showing that the SKAdNetwork IDs are missing or outdated.

Integration details:

SDK: 11.11.3
Adapter: 11.11.3
Initialization Status: Initialized

I added all of the items to my Info.plist file, using the SkAdNetworkItems key with an array value:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <!-- ... -->
    <key>SkAdNetworkItems</key>
    <array>
        <dict>
            <key>SKAdNetworkIdentifier</key>
            <string>22mmun2rn5.skadnetwork</string>
        </dict>
        <dict>
            <key>SKAdNetworkIdentifier</key>
            <string>238da6jt44.skadnetwork</string>
        </dict>
        <!-- ... -->
    </array>
</dict>

Test ads display fine when in test mode.

Why would the integration still be marked as incomplete??

Expected Behavior

No response

How to Reproduce

See above.

Additional Info

No response

@padge, wondering if this might be just a typo. SkAdNetworkItems in your Info.plist above must be SKAdNetworkItems - the 2nd character should be uppercase. If not, please share your full Info.plist and a screenshot of the alert that shows which IDs are missing.

padge commented

@alhiwatan, ahhh there we go! How did I miss that lol 😅 🙈. Thanks so much for your help!