Resources/Info.plist
author Jens Alfke <jens@mooseyard.com>
Fri Mar 07 11:43:02 2008 -0800 (2008-03-07)
changeset 0 e9f7ba4718e1
permissions -rw-r--r--
Initial check-in into Mercurial. Branched from 1.0 release of Apple's sample code. No longer requires garbage collection. Fixed some memory leaks of CG objects. Fixed a bug when advancing to the 8th row in the Checkers game.
jens@0
     1
<?xml version="1.0" encoding="UTF-8"?>
jens@0
     2
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
jens@0
     3
<plist version="1.0">
jens@0
     4
<dict>
jens@0
     5
	<key>CFBundleDevelopmentRegion</key>
jens@0
     6
	<string>English</string>
jens@0
     7
	<key>CFBundleExecutable</key>
jens@0
     8
	<string>${EXECUTABLE_NAME}</string>
jens@0
     9
	<key>CFBundleIdentifier</key>
jens@0
    10
	<string>com.apple.sample.GeekGameBoard</string>
jens@0
    11
	<key>CFBundleInfoDictionaryVersion</key>
jens@0
    12
	<string>6.0</string>
jens@0
    13
	<key>CFBundleName</key>
jens@0
    14
	<string>${PRODUCT_NAME}</string>
jens@0
    15
	<key>CFBundlePackageType</key>
jens@0
    16
	<string>APPL</string>
jens@0
    17
	<key>CFBundleSignature</key>
jens@0
    18
	<string>????</string>
jens@0
    19
	<key>CFBundleVersion</key>
jens@0
    20
	<string>1.0</string>
jens@0
    21
	<key>NSMainNibFile</key>
jens@0
    22
	<string>MainMenu</string>
jens@0
    23
	<key>NSPrincipalClass</key>
jens@0
    24
	<string>NSApplication</string>
jens@0
    25
</dict>
jens@0
    26
</plist>