Video CMS configuration
How do I connect to the video Content Management System (vCMS)?
DIVA Back Office is the VOLT's video CMS that feeds Deltatre Apps.
Deltatre Apps connect to the vCMS through DIVA_BO_DOMAIN configuration fields, one per environment.
Where do I set the connection to DIVA Back Office?
Set the Deltatre Apps DIVA_BO_DOMAIN configuration fields in the app\build.gradle file.
Each field contains the DIVA Back Office domain for the related environment, from development to production:
...
android {
...
defaultConfig {
applicationId "com.deltatre.d3studiotemplate"
...
buildConfigField "String", "DIVA_BO_DEV_DOMAIN", '\"dev-my-diva.net\"'
buildConfigField "String", "DIVA_BO_STABLE_DOMAIN", '\"stable-my-diva.net\"'
buildConfigField "String", "DIVA_BO_STG_DOMAIN", '\"stg-my-diva.net\"'
buildConfigField "String", "DIVA_BO_PROD_DOMAIN", '\"prod-my-diva.net\"'
...
}
...
}