appodeal / Appodeal-Flutter-Plugin

Official Flutter Plugin that adds Appodeal SDK support to your Flutter application.
https://pub.dev/packages/stack_appodeal_flutter
Apache License 2.0
18 stars 3 forks source link

Google Play console alert #28

Closed joepc74 closed 1 year ago

joepc74 commented 1 year ago

I get this alert:

com.appsflyer:af-android-sdk:6.8.0
This SDK version has a note from the SDK developer. Here's what the SDK developer told us:

A critical issue with the caching mechanism of the SDK introduced in v6.7.0, causing cached events to be sent multiple times. Issue was fixed in v6.8.2
joepc74 commented 1 year ago

Solved:

Add Appodeal adapters.

Add dependencies into build.gradle (module: app)

dependencies {
    ...
    // ... other project dependencies
    implementation ('com.appodeal.ads:sdk:3.0.0.+') {
        exclude group: 'com.appodeal.ads.sdk.services', module: 'adjust'
        exclude group: 'com.appodeal.ads.sdk.services', module: 'appsflyer'
        exclude group: 'com.appodeal.ads.sdk.services', module: 'firebase'
        exclude group: 'com.appodeal.ads.sdk.services', module: 'facebook_analytics'
    }
    ...
}