Versions Compared

Key

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

...

Code Block
languagegroovy
repositories {
    maven { url "https://dl.bintraybuzzvil.com/buzzvilpublic/maven/" }
}

...

dependencies {
    // Please take extra caution of the library name as it is different for L app. 
    implementation 'com.buzzvil.buzzscreen.ext:migration-host:1.4.0' {
        exclude group: 'com.buzzvil', module: 'buzzscreen'
    }

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

...

Code Block
languagegroovy
repositories {
    maven { url "https://dl.bintraybuzzvil.com/buzzvilpublic/maven/" }
}

...

dependencies {
    // The version MUST be same as migration-host's
    implementation 'com.buzzvil.buzzscreen.ext:migration-client:1.4.0' {
        exclude group: 'com.buzzvil', module: 'buzzscreen'
    }

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

}

...