Versions Compared

Key

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

...

Code Block
languagegroovy
android {
    defaultConfig {
        // Please replace my_app_key with the app key provided for BuzzScreen integration process.
        manifestPlaceholders = [buzzScreenAppKey:"my_app_key"]
    }
}

...

repositories {
    maven { url "https://dl.bintray.com/buzzvil/maven/" }
}

...

dependencies {
    // Extension library for M app. Please take extra caution of the library name as it is different for L app.
    implementation 'com.buzzvil.buzzscreen.ext:buzzscreen-host:1.14.1.20'

    // (optional) Library for encryption provided by Extension SDK
    // implementation 'com.github.joshjdevl.libsodiumjni:libsodium-jni-aar:1.0.8'
}

...

Code Block
languagegroovy
dependencies {
    implementation 'com.google.android.gms:play-services-base:16.0.1'
    implementation 'com.google.android.gms:play-services-ads:15.0.1'
    implementation 'com.google.android.gms:play-services-location:16.0.0'

    // BuzzScreenClient library for L app. The version MUST be same as BuzzScreenHost's
    implementation 'com.buzzvil.buzzscreen.ext:buzzscreen-client:1.14.1.20' {
        exclude group: 'com.buzzvil', module: 'buzzscreen'
    }


    // (optional) Library for encryption provided by Extension SDK
    // implementation 'com.github.joshjdevl.libsodiumjni:libsodium-jni-aar:1.0.8'
}

...