Clear Conversation Tags
Allows you to clear conversation tags from SDK storage when the client side context changes.
Can you please help in explain what is meant by "client side context change "
What i have tried from my end
1. Added few tags in the new conversation - Able to see the tags in the zendesk portal
2. Tried updating the tags - by adding new tags in the ongoing conversation - Not able to see the new tags in the zendesk portal.
3. Tried clearing the tags and than passing the updated tags - Still the old tags are seen in the zendesk portal.
Zendesk.getInstance().getMessaging().clearConversationTags();
//TAGS
List<String> tags = new ArrayList<String>();
tags.add("android-test");
tags.add("messaging-test");
tags.add("secure-test");
tags.add("retail-test");
Zendesk.getInstance().getMessaging().setConversationTags(tags);