forked from TrevorBurnham/iBooks-HTML-Widget-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Info.plist
25 lines (23 loc) · 776 Bytes
/
Info.plist
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
<?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>
<!-- Modify these properties as desired -->
<key>Width</key>
<integer>1024</integer>
<key>Height</key>
<integer>768</integer>
<key>MainHTML</key>
<string>main.html</string>
<!-- Use Apple widget class to notify when widget is ready -->
<key>IBNotifiesOnReady</key>
<true/>
<!-- These are required, but have no user-facing effect -->
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.trevorburnham.widgetboilerplate</string>
<key>CFBundleName</key>
<string>iBooks HTML Widget Boilerplate</string>
</dict>
</plist>