Setting Roku custom dimensions

Before custom dimensions will appear in the dashboard, you need to set them for the first time. With the Roku library, you set custom dimensions individually.

m.LL.SetCustomDimension(0, "testCD0")

m.LL.SetCustomDimension(3, "testCD3")

m.LL.SetCustomDimension(5, "testCD5")

To remove a custom dimension, use the clearCustomDimensions function.

  clearCustomDimensions: function() {
        this.storage().remove(keys.custom_dimensions);
    },