Instrument your app / Custom dimensions |
Before custom dimensions will appear in the dashboard, you need to set them for the first time. With the Android library, you set custom dimensions individually. Further documentation can be found in the Localytics.java file of the library.
//Create Custom Dimensions String custom_dimension_1 = "Trial"; String custom_dimension_2 = "Adult"; Localytics.setCustomDimension(0, custom_dimension_1); Localytics.setCustomDimension(1, custom_dimension_2);