[ios] Added separate build target for iOS to split Lite and Full versions, updated icons

This commit is contained in:
Alex Zolotarev 2012-03-16 01:20:18 +03:00 committed by Alex Zolotarev
parent 12b07274ba
commit 199841891c
25 changed files with 1523 additions and 69 deletions

BIN
iphone/Maps/100-lite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
iphone/Maps/100-pro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
iphone/Maps/114-lite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
iphone/Maps/114-pro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
iphone/Maps/144-lite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
iphone/Maps/144-pro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
iphone/Maps/29-lite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
iphone/Maps/29-pro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

BIN
iphone/Maps/50-lite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7 KiB

BIN
iphone/Maps/50-pro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

BIN
iphone/Maps/57-lite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8 KiB

BIN
iphone/Maps/57-pro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

BIN
iphone/Maps/58-lite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

BIN
iphone/Maps/58-pro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

BIN
iphone/Maps/72-lite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
iphone/Maps/72-pro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFiles</key>
<array>
<string>29-lite.png</string>
<string>50-lite.png</string>
<string>57-lite.png</string>
<string>58-lite.png</string>
<string>72-lite.png</string>
<string>100-lite.png</string>
<string>114-lite.png</string>
<string>144-lite.png</string>
</array>
<key>CFBundleIdentifier</key>
<string>${BUNDLE_IDENTIFIER}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>${CURRENT_PROJECT_VERSION}</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>${CURRENT_PROJECT_VERSION}</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMainNibFile</key>
<string>MainWindow</string>
<key>NSMainNibFile~ipad</key>
<string>MainWindow-iPad</string>
<key>UIFileSharingEnabled</key>
<true/>
<key>UIPrerenderedIcon</key>
<true/>
<key>UIStatusBarHidden</key>
<false/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>

View file

@ -10,12 +10,14 @@
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFiles</key>
<array>
<string>Icon.png</string>
<string>Icon-72.png</string>
<string>Icon@2x.png</string>
<string>Icon-Small.png</string>
<string>Icon-Small-50.png</string>
<string>Icon-Small@2x.png</string>
<string>29-pro.png</string>
<string>50-pro.png</string>
<string>57-pro.png</string>
<string>58-pro.png</string>
<string>72-pro.png</string>
<string>100-pro.png</string>
<string>114-pro.png</string>
<string>144-pro.png</string>
</array>
<key>CFBundleIdentifier</key>
<string>${BUNDLE_IDENTIFIER}</string>