Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

The AdPlayer Flutter plugin currently supports only for the Android platform!

In order to use the AdPlayer Flutter Plugin you should follow these steps:
1. Add the plugin dependency in your pubspec.yaml file:

dependencies:   
  adplayer_flutter_plugin: ^1.0.0

2. Add the maven repository of our native library to the android/build.gradle file and fill in your your password:

allprojects {
    repositories {
        maven {
            url "https://us-central1-maven.pkg.dev/mobile-sdk-fd2e4/adservr-maven"
            credentials {
                username "_json_key_base64"
                password <your password>
            }
            authentication {
                basic(BasicAuthentication)
            }
        }
    }
}

3. Make sure to enable multidex in your application.
There are several ways to do that, as described in the article. One way to do that would be to add the following to your android/app/build.gradle file:

defaultConfig {
    multiDexEnabled true
}

dependencies {
    implementation 'androidx.multidex:multidex:2.0.1'
}

  • No labels