I am integrating Apptentive on Android. I am passing custom data to the Message Center but it is not display on the Apptentive website. This is my code
HashMap<String, String> customData = new HashMap<String, String>();
//add package name
customData.put("package", getPackageName());
//show message center
Apptentive.showMessageCenter(ViralPopup.this, customData);
Any suggestions?