Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode adding DTXcode key and others to Info.plist

Recently Xcode started adding keys to the Info.plist of my Cocoa app:

  • DTXcode
  • DTXcodeBuild
  • DTCompiler
  • DTPlatformBuild
  • DTPlatformName
  • DTPlatformVersion
  • DTSDKBuild
  • DTSDKName

What are those keys used for and why do they all of a sudden appear? Are they needed?

I'm using Xcode 3.2.6

like image 604
Mark Avatar asked Jun 30 '11 10:06

Mark


1 Answers

These keys serve as information about the development environment.

Fox example, Xcode add them when you code-sign your application before submitting it to the App Store.

They also appear in the binary details of the application on iTunes Connect.

like image 103
Laurent Etiemble Avatar answered Nov 03 '22 09:11

Laurent Etiemble