iPhone/Info.plist
author Jens Alfke <jens@mooseyard.com>
Fri Jul 24 14:06:28 2009 -0700 (2009-07-24)
changeset 63 5e4855a592ee
permissions -rwxr-xr-x
* The BLIPConnection receivedRequest: delegate method now returns BOOL. If the method returns NO (or if the method isn't implemented in the delegate), that means it didn't handle the message at all; an error will be returned to the sender.
* If the connection closes unexpectedly due to an error, then the auto-generated responses to pending requests will contain that error. This makes it easier to display a meaningful error message in the handler for the request.
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
     3 <plist version="1.0">
     4 <dict>
     5 	<key>CFBundleDevelopmentRegion</key>
     6 	<string>en</string>
     7 	<key>CFBundleDisplayName</key>
     8 	<string>BLIP Echo</string>
     9 	<key>LSRequiresIPhoneOS</key>
    10 	<true/>
    11 	<key>CFBundleExecutable</key>
    12 	<string>${EXECUTABLE_NAME}</string>
    13 	<key>CFBundleIconFile</key>
    14 	<string>icon.png</string>
    15 	<key>CFBundleIdentifier</key>
    16 	<string>com.yourcompany.${PRODUCT_NAME:identifier}</string>
    17 	<key>CFBundleInfoDictionaryVersion</key>
    18 	<string>6.0</string>
    19 	<key>CFBundleName</key>
    20 	<string>${PRODUCT_NAME}</string>
    21 	<key>CFBundlePackageType</key>
    22 	<string>APPL</string>
    23 	<key>CFBundleSignature</key>
    24 	<string>????</string>
    25 	<key>CFBundleVersion</key>
    26 	<string>1.7</string>
    27 	<key>NSMainNibFile</key>
    28 	<string>MainWindow</string>
    29 </dict>
    30 </plist>