Versions Compared

Key

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

...

  • Necessary SDK’s to integrate

    • M app: BuzzScreenHost SDK

    • L app: BuzzScreenClient SDK + BuzzScreen SDK

Drawio
zoom1
simple0
zoompageId1390660168
pageIdlbox3906601681
diagramDisplayNameextension_sdk_workflowlbox1
contentVer1
revision1
baseUrlhttps://buzzvil.atlassian.net/wiki
diagramName제목 없는 다이어그램.drawio
width691.5
links
tbstyle
height347.5

...

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.bintraybuzzvil.com/buzzvilpublic/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.4.0'

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

...

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

...

repositories {
    maven { url "https://dl.bintraybuzzvil.com/buzzvilpublic/maven/" }
}
BuzzScreen Integration

...