Setting up Analytics in iOS
I integrated adobe analytics V4.1 with following ADBMobileConfig.json settings
{
"version" : "1.0",
"analytics" : {
"rsids" : "@MyRSID",
"server" : "@trackingServerURL.112.2o7.net",
"charset" : "UTF-8",
"ssl" : false,
"offlineEnabled" : false,
"lifecycleTimeout" : 300,
"referrerTimeout" : 0,
"batchLimit" : 0,
"privacyDefault" : "optedin",
"poi" : []
},
"target" : {
"clientCode" : "@TeamName",
"timeout" : 15
},
"audienceManager" : {
"server" : ""
},
"acquisition" : {
"server" : "",
"appid" : ""
}
}
The RSID, tracking server and clientCode has been replace with its respective values. Now, when I call [ADBMobile trackState:@"Page Name" data:@{RequiredKey:Value}]; , I am able to see ADBMobile Debug: Analytics - Attempting to send request ****
But I am unable to find any analytics in MobileAppOverview when I run the application. Is there anything else to see analytics. Any help is highly appreciated, thanks in advance.