I want to get information about app installs and new/active users. Nothing else. No events, purchases, etc. Maybe uncaught exceptions. I use Google Analytics v3.14 (pod 'GoogleAnalytics', '~> 3.14') and this code to setup tracking:
id<GAITracker> tracker = [[GAI sharedInstance] trackerWithTrackingId:@"my-trackerID"];
GAI *gai = [GAI sharedInstance];
gai.trackUncaughtExceptions = YES;
gai.dispatchInterval = 120;
gai.defaultTracker.allowIDFACollection = YES;
gai.logger.logLevel = kGAILogLevelVerbose;
However, when I look into google analytics report I see only few users (it must be much more). If I try to force sending analytics with [[GAI sharedInstance] dispatch];
I see
INFO: GoogleAnalytics 3.14 -[GAIBatchingDispatcher hitsForDispatch] (GAIBatchingDispatcher.m:368): No pending hits.
in logs. Is it possible to track only app installs and new/active users? If so then how?