I Integrated Flurry in my iOS App. I added Some Events.
I am passing "EventName" as "String value" and "EventValue" as "URL String".
But When I checked in flurry analytics For Event_URL sometimes its showing com.flurry.OTHER" Any idea why its showing com.flurry.OTHER"
NSString *eventName = "EVENT NAME"; NSString *eventValue = "https://myname/myimage.gif";
NSMutableDictionary *articleParams = [[NSMutableDictionary alloc]init];
[articleParams setObject:eventName forKey:@"Event_Name"];
[articleParams setObject:eventValue forKey:@"Event_URL"];
[Flurry logEvent:@"Event_Detail" withParameters:articleParams];