Adding plist and getting ready for AppStore publishing AppStore
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 05 Aug 2014 21:38:04 +0200
branchAppStore
changeset 1905d4452c6ae1a
parent 189 be4b4c93c1ea
child 191 d60e5364ff2c
Adding plist and getting ready for AppStore publishing
minesweeper/Info.plist.xml
minesweeper/pom.xml
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/minesweeper/Info.plist.xml	Tue Aug 05 21:38:04 2014 +0200
     1.3 @@ -0,0 +1,46 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
     1.6 +<plist version="1.0">
     1.7 +    <dict>
     1.8 +        <key>CFBundleDevelopmentRegion</key>
     1.9 +        <string>en</string>
    1.10 +        <key>CFBundleDisplayName</key>
    1.11 +        <string>Fair Mines</string>
    1.12 +        <key>CFBundleExecutable</key>
    1.13 +        <string>MineSweeper</string>
    1.14 +        <key>CFBundleIdentifier</key>
    1.15 +        <string>org.apidesign.demo.minesweeper</string>
    1.16 +        <key>CFBundleInfoDictionaryVersion</key>
    1.17 +        <string>6.0</string>
    1.18 +        <key>CFBundleName</key>
    1.19 +        <string>Fair Mines</string>
    1.20 +        <key>CFBundlePackageType</key>
    1.21 +        <string>APPL</string>
    1.22 +        <key>CFBundleShortVersionString</key>
    1.23 +        <string>2.4</string>
    1.24 +        <key>CFBundleSignature</key>
    1.25 +        <string>????</string>
    1.26 +        <key>CFBundleVersion</key>
    1.27 +        <string>1</string>
    1.28 +        <key>NSHumanReadableCopyright</key>
    1.29 +        <string>Copyright © 2014 Jaroslav Tulach. All rights reserved.</string>
    1.30 +        <key>LSRequiresIPhoneOS</key>
    1.31 +        <true/>
    1.32 +        <key>UIDeviceFamily</key>
    1.33 +        <array>
    1.34 +            <integer>1</integer>
    1.35 +            <integer>2</integer>
    1.36 +        </array>
    1.37 +        <key>UIRequiredDeviceCapabilities</key>
    1.38 +        <array>
    1.39 +            <string>armv7</string>
    1.40 +        </array>
    1.41 +        <key>UISupportedInterfaceOrientations</key>
    1.42 +        <array>
    1.43 +            <string>UIInterfaceOrientationPortrait</string>
    1.44 +            <string>UIInterfaceOrientationLandscapeLeft</string>
    1.45 +            <string>UIInterfaceOrientationLandscapeRight</string>
    1.46 +            <string>UIInterfaceOrientationPortraitUpsideDown</string>
    1.47 +        </array>
    1.48 +    </dict>
    1.49 +</plist>
     2.1 --- a/minesweeper/pom.xml	Tue Aug 05 09:45:07 2014 +0200
     2.2 +++ b/minesweeper/pom.xml	Tue Aug 05 21:38:04 2014 +0200
     2.3 @@ -561,6 +561,7 @@
     2.4                                        </includes>
     2.5                                    </resource>
     2.6                                </resources>
     2.7 +                               <iosInfoPList>Info.plist.xml</iosInfoPList>
     2.8                            </config>
     2.9                            <includeJFX>false</includeJFX>
    2.10                        </configuration>