Upgrading from Version 1.4.3 to 1.5.8
Version 1.5.8 refactors optional initialization parameters to use a builder pattern.
All old methods are still functional, and only marked as deprecated, so no immediate action is required.
We still recommend to migrate the initialization call to be safe for future updates.
Required Migrations
Manual SDK Initialization
Check
Are you calling FeedAd.init(...)
within your app code, with more than two parameters?
Action
- Use the new options builder as a 3rd parameter, as described here.
- Migrate your previous parameters to the following options builder methods:
- 3rd parameter:
setEnableLogging(value)
- 4th parameter:
setWaitForConsent(value)
- 3rd parameter:
AppLovin MAX Integration
Check
If you are using FeedAd as an adapter for AppLovin MAX.
Action
Make sure you are using at least version 1.0.5
of our AppLovin MAX plugin:
implementation 'com.feedad.android:feedad-applovin:1.0.5'