• May 01, 2024, 11:55:12 am

Author Topic: Web runtime info.plist explained  (Read 2795 times)

0 Members and 1 Guest are viewing this topic.

Offline Allstar12345

  • Allstar Software Founder
  • Administrator
  • Forum Genius
  • ******
  • Posts: 5,235
  • Reputation: 812
    • Allstar Software
  • Current Phone: : OnePlus 8 Pro, Xperia 10, Nexus 6p, Jolla Phone, Nokia N8, Nokia 808 PureView, BlackBerry Z30
Web runtime info.plist explained
« on: September 03, 2012, 06:43:20 pm »
The info.plist is vital for a WRT app it contains the version number the widget proper name ,minview controls , the installation folder name and network access option:

Code: [Select]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Nokia//DTD PLIST 1.0//EN" "http://www.nokia.com/NOKIA_COM_1/DTDs/plist-1.0.dtd">
<plist version="1.0">
    <dict>
        <key>DisplayName</key>
        <string>WIDGET FULL NAME</string>
        <key>Identifier</key>
        <string>INSTALLATION FOLDER</string>
        <key>Version</key>
        <string>VERSION NUMBER</string>
        <key>MainHTML</key>
        <string>MAIN PAGE FILE NAME </string>
        <key>AllowNetworkAccess- ALLOW OR DENY NETWORK ACCESS</key>
        <true/>
    </dict>
</plist>