Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagegroovy
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:

...