-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInfo.plist.template
65 lines (65 loc) · 1.87 KB
/
Info.plist.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!--
https://developer.apple.com/library/ios/#documentation/General/Reference/InfoPlistKeyReference/Introduction/Introduction.html
https://developer.apple.com/library/ios/#documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
-->
<plist version="1.0">
<dict>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleIdentifier</key>
<string>edu.Arizona.LPL.HiRISE.HiView</string>
<key>CFBundleName</key>
<string>@EXECUTABLE@</string>
<key>CFBundleExecutable</key>
<string>@EXECUTABLE@</string>
<key>CFBundleGetInfoString</key>
<string>HiView v@VERSION@</string>
<key>CFBundleVersion</key>
<string>@VERSION@</string>
<key>CFBundleShortVersionString</key>
<string>@VERSION@</string>
<key>CFBundleSignature</key>
<string>@TYPEINFO@</string>
<key>CFBundleIconFile</key>
<string>@ICON@</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>CFBundleTypeName</key>
<string>public.jpeg-2000</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>JP2</string>
<string>jp2</string>
<string>JPL</string>
<string>jpl</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>image/jp2</string>
<string>application/hiview</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>@ICON@</string>
</dict>
</array>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>CFBundleURLName</key>
<string>jpip</string>
<key>CFBundleURLSchemes</key>
<array>
<string>jpip</string>
</array>
</dict>
</array>
</dict>
</plist>
<!-- CVS ID $Id: Info.plist.template,v 1.6 2012/12/20 19:28:55 guym Exp $ -->