Integration
This page shows you how to download, configure, and initialize the AppLovin Flutter plugin.
Download the Latest Plugin
Download the AppLovin MAX Flutter plugin through pub.dev by entering the following dependency into your pubspec.yaml
under dependencies
:
You can add that dependency to pubspec.yaml
manually, or by issuing the following flutter
command:
To receive release updates, subscribe to the AppLovin MAX Flutter Plugin GitHub repository.
Install applovin_max
If you added the dependency manually (rather than with the flutter pub add
command), issue the following flutter
command to install applovin_max
:
(If you add the dependency with the flutter pub add
command, this step takes place automatically.)
Integrate Custom SDK Adapters
AppLovin Exchange (ALX) supports a custom adapter for LinkedIn. Follow the instructions below to integrate the adapter on Android or iOS. More information can be found here.
Android Instructions
iOS Instructions
To install the adapter:
- Add the following line to your Podfile:
- Run the following on the command line:
Initialize the SDK
Import the plugin into your Dart code with this import
statement:
Add the code snippet below into your app’s main home screen.
You must call AppLovinMAX.initialize()
only once:
You can find your SDK key in the Account > General > Keys section of the AppLovin dashboard.
Ad assets that are fully cached result in a better user experience. For this reason, always initialize the AppLovin SDK on startup. This gives mediated networks the maximum amount of time to cache ads. This is especially important with video ads.
iOS 14 Support
In iOS 14, Apple introduced global privacy policy changes. Apple requires applications to comply with these new policies. If you fail to comply, you may lose revenue. This section explains how to comply.
SKAdNetwork
Update your app’s Info.plist
with network-specific identifiers.
See the SKAdNetwork documentation for instructions.
Consent and Data APIs
You must obtain consent from your users in certain jurisdictions on behalf of AppLovin’s monetization partners. You must also correctly pass consent values to AppLovin. To learn how to do these things, review the Privacy–Consent, Age-Related Flags, and Data APIs documentation.
iOS 15 Global SKAdNetwork Reporting
Starting with iOS 15, Apple allows developers to send a copy of their SKAdNetwork install postbacks to an endpoint of their choice. MAX includes a Global SKAdNetwork Report (MAX > Mediation > Analyze > Global SKA Report). You can use this to access the SKAdNetwork data across all of your network partners in one place.
To leverage the MAX Global SKAdNetwork Report, enable iOS 15 SKAdNetwork reporting by using the app’s Info.plist
:
- In your app’s
Info.plist
, create a new key namedNSAdvertisingAttributionReportEndpoint
of typeString
. - Give that key the value
https://postbacks-app.com
.