Set Campaign Variable (Tracking Code) in Android Mobile App
To set the campaign variable, set a context data key to "&&campaign", and set the value by using the syntax that is defined for the campaign variable:
cdata.put("&&campaign", "App Campaign");
//create a context data dictionary HashMap cdata = new HashMap<String, Object>(); // Note the special syntax for Campaign cdata.put("&&campaign", "App Campaign"); // print the output System.out.println("Campaign value");