Versions Compared

Key

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

...

Inc drawio
includedDiagram
baseUrlhttps://buzzvil.atlassian.net/wiki
diagramNamemigration_sdk_workflow
includedDiagram1
width692
1pageId386924671
diagramDisplayNamemigration_sdk_workflow
height348

...

Code Block
languagegroovy
repositories {
    maven { url "https://dl.bintray.com/buzzvil/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.14.1.20' {
        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.bintray.com/buzzvil/maven/" }
}

...

dependencies {
    // The version MUST be same as migration-host's
    implementation 'com.buzzvil.buzzscreen.ext:migration-client:1.14.1.20' {
        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'

}

...