IOS: How to set the ID and Version fields in the crash log?

When I look at the iOS crash log, I see the following two fields next to the crash log head:

Identifier: MyCoolApp Version: ??? (???) 

I have already tried installing the following in MyCoolApp-Info.plist

  <key>CFBundleName</key> <string>NF_201104011216</string> 

and

  <key>CFBundleVersion</key> <string>1.9.0.201104011216</string> 

and

  <key>CFBundleShortVersionString</key> <string>1.9.0</string> 

but so far nothing has happened. My alarm logs always remain the same despite changing these fields in the plist file.

The following article discusses this, but he does not say how they are used (if at all) in the crash dump file: http://developer.apple.com/library/ios/#documentation/general/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys. html

+4
source share
1 answer

This seems to be a mistake with the crash reporter. It is impossible to establish. There is a bit of sloppy work, though, see the Related Question:

IPhone emergency logs say "Version:"

0
source

Source: https://habr.com/ru/post/1346283/


All Articles