[ios] Added Alohalytics installation id to bug report.

This commit is contained in:
Ilya Grechuhin 2016-06-07 10:46:42 +03:00 committed by Vladimir Byko-Ianko
parent 1e9982157f
commit 6911dc38b7

View file

@ -234,6 +234,9 @@ extern NSDictionary * const deviceNames = @{@"x86_64" : @"Simulator",
NSString * country = [[NSLocale localeWithLocaleIdentifier:kLocaleUsedInSupportEmails] displayNameForKey:NSLocaleCountryCode value:locale];
NSString * bundleVersion = [[NSBundle mainBundle] objectForInfoDictionaryKey:(NSString *)kCFBundleVersionKey];
NSString * text = [NSString stringWithFormat:@"\n\n\n\n- %@ (%@)\n- MAPS.ME %@\n- %@/%@", device, [UIDevice currentDevice].systemVersion, bundleVersion, language, country];
NSString * alohalyticsId = [Alohalytics installationId];
if (alohalyticsId)
text = [NSString stringWithFormat:@"%@\n- %@", text, alohalyticsId];
if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController * vc = [[MFMailComposeViewController alloc] init];