Lumen help

Configure Mesh Delivery for Android

Introduction

Example

                val deliveryClient = LumenDeliveryClient.meshBuilder(<context>)
    .playerInteractor(<playerInteractor>)
    .options {
        ...
        meshProperty(<meshProperty>)
        contentId(<contentID>)
        ...
    }
    .build(<contentURL>)
            
                LumenDeliveryClient deliveryClient = LumenDeliveryClient
  .meshBuilder(<context>)
  .playerInteractor(<playerInteractor>)
  .options(o -> {
    // ...
    o.meshProperty(<meshProperty>);
    o.contentId(<contentID>);
    // ...
    return null;
  }).build(<contentURL>);
            

Introduction

meshProperty   - string (optional)

Example

                builder.options {
  meshProperty(<String>)
}
            
                builder.options(o -> {
    o.meshProperty(<String>)
    return null;
});
            

Introduction

contentId  - string (optional)

                builder.options {
  contentId(<String>)
}
            
                builder.options(o -> {
    o.contentId(<String>)
    return null;
});
            

Dashboard Overview