Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1679 chris 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>${app.name}</string>
9
    <key>CFBundleExecutable</key>
10
    <string>${app.executable}</string>
11
    <key>CFBundleIdentifier</key>
12
    <string>${app.id}</string>
13
    <key>CFBundleInfoDictionaryVersion</key>
14
    <string>6.0</string>
15
    <key>CFBundleName</key>
16
    <string>${app.name}</string>
17
    <key>CFBundlePackageType</key>
18
    <string>APPL</string>
19
    <key>CFBundleShortVersionString</key>
20
    <string>${app.version}</string>
21
    <key>CFBundleSignature</key>
22
    <string>????</string>
23
    <key>CFBundleVersion</key>
24
    <string>${app.build}</string>
25
    <key>LSRequiresIPhoneOS</key>
26
    <true/>
27
    <key>UIViewControllerBasedStatusBarAppearance</key>
28
    <false/>
29
    <key>UIStatusBarHidden</key>
30
    <true/>
31
    <key>UIDeviceFamily</key>
32
    <array>
33
        <integer>1</integer>
34
        <integer>2</integer>
35
    </array>
36
    <key>UIRequiredDeviceCapabilities</key>
37
    <array>
38
        <string>armv7</string>
39
        <string>opengles-2</string>
40
    </array>
41
    <key>UISupportedInterfaceOrientations</key>
42
    <array>
43
        <string>UIInterfaceOrientationPortrait</string>
44
        <string>UIInterfaceOrientationLandscapeLeft</string>
45
        <string>UIInterfaceOrientationLandscapeRight</string>
46
    </array>
47
    <key>CFBundleIcons</key>
48
    <dict>
49
        <key>CFBundlePrimaryIcon</key>
50
        <dict>
51
            <key>CFBundleIconFiles</key>
52
            <array>
53
                <string>Icon</string>
54
                <string>Icon-72</string>
55
            </array>
56
        </dict>
57
    </dict>
58
</dict>
59
</plist>