Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '3party/Alohalytics/examples/ios/SampleClient/AppDelegate.m')
-rw-r--r--3party/Alohalytics/examples/ios/SampleClient/AppDelegate.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/3party/Alohalytics/examples/ios/SampleClient/AppDelegate.m b/3party/Alohalytics/examples/ios/SampleClient/AppDelegate.m
index 3c702d333b..adffc904d4 100644
--- a/3party/Alohalytics/examples/ios/SampleClient/AppDelegate.m
+++ b/3party/Alohalytics/examples/ios/SampleClient/AppDelegate.m
@@ -44,6 +44,12 @@
// Used for example purposes only to upload statistics (unpredictable) in background, when system wakes app up.
[application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
+ NSLog(@"isFirstSession: %d", [Alohalytics isFirstSession]);
+ NSLog(@"firstLaunchDate: %@", [Alohalytics firstLaunchDate]);
+ NSLog(@"installDate: %@", [Alohalytics installDate]);
+ NSLog(@"updateDate: %@", [Alohalytics updateDate]);
+ NSLog(@"buildDate: %@", [Alohalytics buildDate]);
+
return YES;
}