describe your widget

Every widget page must contain a widgetPackage.xml file. This file contains necessary information about the widget, including its title, description, version number, author info, and width and height.

Tip: If you don't want to write this file by hand, use the widgetPackage Generator instead!

create a widgetPackage.xml file

Here's an example widgetPackage.xml file:

<?xml version="1.0" encoding="utf-8" ?>
<widgetPackage xmlns="http://xmlns.sony.net/mylo/widget" version="1.0">
	<info>
		<packageName>A Cool Widget</packageName>
		<author>Your Name Here</author>
		<abstract>A cool widget I made!</abstract>
		<version>1.000</version>
		<locale>US</locale>
		<engine>1.000</engine>
		<updateURL>http://yoursite.com/mylo/widgetPackage.xml</updateURL>
		<siteURL>http://yoursite.com/</siteURL>
		<minWidth>15</minWidth>
		<maxWidth>50</maxWidth>
		<minHeight>15</minHeight>
		<maxHeight>50</maxHeight>
		<defWidth>32</defWidth>
		<defHeight>32</defHeight>
		<createDate>2023-05-09</createDate>
	</info>
</widgetPackage>

Copy and paste the above text into a new widgetPackage.xml file, then modify the contents of the metadata tags to describe your widget.

metadata tag descriptions

The widget installer showing the metadata of a widget.