-
Notifications
You must be signed in to change notification settings - Fork 0
Get Started
kristiyan-petrov edited this page Nov 22, 2023
·
4 revisions
Once you have SDK credentials you may now want to add this library in your android project application.
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://maven.bandyer.com/releases' }
}
}
Add this line into app/build.gradle file:
implementation(platform("com.kaleyra:video-sdk-bom:$kaleyraVideoSdkVersion"))
implementation 'com.kaleyra:video-sdk'
or use the sdk for smartglasses:
implementation(platform("com.kaleyra:video-sdk-bom:$kaleyraVideoSdkVersion"))
implementation 'com.kaleyra:video-glasses-sdk'
In case you are not experienced see here to get a better idea on where it should be added