To add a tag to the upcoming report, you can use this method and pass to it any number of strings, each denoting a unique tag.
Luciq.appendTags(["Design", "Flow"])
[Luciq appendTags:@[@"Design", @"Flow"]];
Luciq.addTags("Tag one", "Tag two", "Tag three");
Luciq.addTags("Tag one", "Tag two", "Tag three");
Luciq.appendTags(["Tag 1", "Tag 2"]);
Luciq.appendTags(["Tag 1", "Tag 2"]);
//iOS
string[] tags = { "tag1", "tag2" };
NSArray nsArray = NSArray.FromObjects(tags);
Luciq.AppendTags(nsArray);
//Android
Luciq.AddTags("Tag1","Tag2","Tag3");