[ios] log app name and bundle id on the app start

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-10-10 14:33:18 +04:00 committed by Alexander Borsuk
parent 71f7a88a2d
commit a42b6bfac5
2 changed files with 4 additions and 2 deletions

View file

@ -7,7 +7,7 @@ int main(int argc, char * argv[])
{
[MWMSettings initializeLogging];
auto & p = GetPlatform();
LOG(LINFO, ("Organic Maps", p.Version(), "started, detected CPU cores:", p.CpuCores()));
LOG(LINFO, (p.Version(), "started, detected CPU cores:", p.CpuCores()));
int retVal;
@autoreleasepool

View file

@ -163,9 +163,11 @@ std::string Platform::DeviceModel() const
std::string Platform::Version() const
{
NSBundle * mainBundle = [NSBundle mainBundle];
NSString * appName = [mainBundle objectForInfoDictionaryKey:@"CFBundleName"];
NSString * bundleId = mainBundle.bundleIdentifier;
NSString * version = [mainBundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
NSString * build = [mainBundle objectForInfoDictionaryKey:@"CFBundleVersion"];
return std::string{version.UTF8String} + '-' + build.UTF8String + '-' + OMIM_OS_NAME;
return std::string{appName.UTF8String} + ' ' + std::string{bundleId.UTF8String} + ' ' + std::string{version.UTF8String} + '-' + build.UTF8String + '-' + OMIM_OS_NAME;
}
int32_t Platform::IntVersion() const