sh-3.2# plutil -lint iPhoneOS.platform/Info.plist
iPhoneOS.platform/Info.plist: OK
sh-3.2# plutil -lint iPhoneSimulator.platform/Info.plist
iPhoneSimulator.platform/Info.plist: OK
sh-3.2# plutil -lint MacOSX.platform/Info.plist
MacOSX.platform/Info.plist: OK
The iPhoneOS plist for instance, does have an "Identifier" key, but there are 2 weird , variabled entries $(SDK_NAME) and $(IPHONEOS_DEPLOYMENT_TARGET) :
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>AdditionalInfo</key>
<dict>
<key>CFBundleResourceSpecification</key>
<string>ResourceRules.plist</string>
<key>DTPlatformName</key>
<string>iphoneos</string>
<key>DTSDKName</key>
<string>$(SDK_NAME)</string>
<key>MinimumOSVersion</key>
<string>$(IPHONEOS_DEPLOYMENT_TARGET)</string>
</dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.platform.iphoneos</string>
<key>CFBundleName</key>
<string>iPhone OS platform</string>
<key>CFBundleShortVersionString</key>
<string>2.1</string>
<key>DefaultDebuggerSettings</key>
<dict>
<key>DataFormattersLocationPath</key>
<string>/Developer/usr/lib</string>
<key>DisableGuardMallocInDebugger</key>
<string>YES</string>
<key>DisableRestartInDebugger</key>
<string>YES</string>
<key>ProvidesAttachList</key>
<string>YES</string>
<key>RequiresDeviceForLaunch</key>
<string>YES</string>
<key>RunInDebugger</key>
<string>YES</string>
</dict>
<key>DefaultProperties</key>
<dict>
<key>ADDITIONAL_BUILD_STEPS</key>
<array>
<string>com.apple.platform.iphoneos.build-tools.iphoneos-optimize</string>
</array>
<key>ARCHS</key>
<string>armv6</string>
<key>DEBUG_INFORMATION_FORMAT</key>
<string>dwarf-with-dsym</string>
<key>EMBEDDED_PROFILE_NAME</key>
<string>embedded.mobileprovision</string>
<key>NATIVE_ARCH</key>
<string>armv6</string>
<key>PROVISIONING_PROFILE[sdk=iphoneos*]</key>
<string>DefaultProfileUuid</string>
<key>PROVISIONING_PROFILE_ALLOWED</key>
<string>YES</string>
<key>PROVISIONING_PROFILE_REQUIRED</key>
<string>YES</string>
<key>SDKROOT</key>
<string>iPhoneOS2.1</string>
</dict>
<key>Description</key>
<string>iPhone OS Device</string>
<key>FamilyIdentifier</key>
<string>iphoneos</string>
<key>FamilyName</key>
<string>iPhone OS</string>
<key>Icon</key>
<string>iPhoneOS.icns</string>
<key>Identifier</key>
<string>com.apple.platform.iphoneos</string>
<key>Name</key>
<string>iphoneos</string>
<key>Type</key>
<string>Platform</string>
</dict>
</plist>
Any help would be very appreciated.
Thanks