iPhone/Info.plist
author Jens Alfke <jens@mooseyard.com>
Sun May 24 15:03:39 2009 -0700 (2009-05-24)
changeset 49 20cccc7c26ee
permissions -rwxr-xr-x
Misc. tweaks made while porting Chatty to use MYNetwork.
* Allow -[BLIPConnection sendRequest:] to re-send an already-sent or received request.
* Allow use of the basic -init method for BLIPConnection.
* Some new convenience factory methods.
* Broke dependencies on Security.framework out into new TCPEndpoint+Certs.m source file, so client apps aren't forced to link against Security.
snej@25
     1
<?xml version="1.0" encoding="UTF-8"?>
snej@25
     2
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
snej@25
     3
<plist version="1.0">
snej@25
     4
<dict>
snej@25
     5
	<key>CFBundleDevelopmentRegion</key>
snej@25
     6
	<string>en</string>
snej@25
     7
	<key>CFBundleDisplayName</key>
snej@25
     8
	<string>BLIP Echo</string>
snej@25
     9
	<key>LSRequiresIPhoneOS</key>
snej@25
    10
	<true/>
snej@25
    11
	<key>CFBundleExecutable</key>
snej@25
    12
	<string>${EXECUTABLE_NAME}</string>
snej@25
    13
	<key>CFBundleIconFile</key>
snej@25
    14
	<string>icon.png</string>
snej@25
    15
	<key>CFBundleIdentifier</key>
snej@25
    16
	<string>com.yourcompany.${PRODUCT_NAME:identifier}</string>
snej@25
    17
	<key>CFBundleInfoDictionaryVersion</key>
snej@25
    18
	<string>6.0</string>
snej@25
    19
	<key>CFBundleName</key>
snej@25
    20
	<string>${PRODUCT_NAME}</string>
snej@25
    21
	<key>CFBundlePackageType</key>
snej@25
    22
	<string>APPL</string>
snej@25
    23
	<key>CFBundleSignature</key>
snej@25
    24
	<string>????</string>
snej@25
    25
	<key>CFBundleVersion</key>
snej@25
    26
	<string>1.7</string>
snej@25
    27
	<key>NSMainNibFile</key>
snej@25
    28
	<string>MainWindow</string>
snej@25
    29
</dict>
snej@25
    30
</plist>