<?xml version="1.0" encoding="UTF-8"?>
<pInstaller xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.handx.net/devtool/pInstaller/schema/pInstaller.xsd">
<!-- The previous two lines are required as the first two lines for any pInstaller project.  They establish that this is 
an xml document which follows the pInstaller Schema-->
<!--First, we specify the product name -->
	<productName>Sample Palm App</productName>
<!-- If you want the users to be able to select individual files in the file groups, include this line
otherwise, they will only be able to select the group of files as a block -->
	<showFileGroupDetails>true</showFileGroupDetails>
<!-- We'll include a licence agreement in this installation.  The user will have to indicate that they
agree before proceeding.  If you don't want to display an agreement or info file, don't include this section.-->
	<preInstallationMessage>
<!-- The title to display at the top of the installation -->
		<title>License Agreement</title>
<!-- The caption to display under the title -->
		<caption>Please read the following license agreement carefully.</caption>
<!-- The name of the file to display (can be a .txt or .rtf file) -->
		<fileName>sampleApp License.rtf</fileName>
<!-- Indicate that you want to display license agreement buttons.  Set this to false if you
are simply displaying a readme file or other information -->
		<showLicenseAgreementRadioButtons>true</showLicenseAgreementRadioButtons>
<!-- Specifying the next value "pre selects" Accept or Do Not Accept for the end user during the installation.
If you do not specify this value, then neither option will default as selected.  The value can be
can be DoNotAccept or Accept -->
		<defaultAcceptanceTo>DoNotAccept</defaultAcceptanceTo>
<!-- close up the section -->
	</preInstallationMessage>
<!-- Create the first file group-->
	<fileGroup>
<!-- The description to display -->
		<description>Supplemental Sales Support</description>
<!-- The id of this file group- these should start with 1 and increment for each group, and can never be 0 -->
		<id>1</id>
<!-- close up this file group -->
	</fileGroup>
<!-- create a second file group -->
	<fileGroup>
<!-- The description to display -->
		<description>Supplemental Service Support</description>
<!-- The id of this file group- note that this one is 2 -->
		<id>2</id>
<!-- close up this file group -->
	</fileGroup>

<!-- Now we'll list our installation files. -->
<!-- First we indicate that we are describing an installation file -->
	<installationFile>
<!-- Now we specify the file name of the first file-->
		<fileName>samplePalmApp.prc</fileName>
<!-- Now we specify the destination as $PALM_DEVICE  this is a special variable which will
place the file on the palm device, rather than the PC. -->
		<destination>$PALM_DEVICE</destination>
<!-- We always want the base application to be installed, so we set the filegroup to "0", a specially defined
fileGroup for required files. -->
		<fileGroup>0</fileGroup>
<!-- close up this installation file -->
	</installationFile>
<!-- Now we indicate that we are describing another installation file -->
	<installationFile>
<!-- Now we specify the file name -->
		<fileName>sales_database.pdb</fileName>
<!-- Now we specify the destination as $PALM_DEVICE  this is a special variable which will
place the file on the palm device, rather than the PC. -->
		<destination>$PALM_DEVICE</destination>
<!-- This is part of the Supplemental Sales Database FileGroup. -->
		<fileGroup>1</fileGroup>
<!-- This is the displayed name of the file.  Note that we only specify this for non-required files (files
with a fileGroup other than 0 -->
                <fileDescription>Sales Database</fileDescription>
<!-- Our application supports installing this file to an expansion card, so we select that here -->
		<cardInstallable>1</cardInstallable>
<!-- close up this installation file -->
	</installationFile>
<!-- First we indicate that we are describing an installation file -->
	<installationFile>
<!-- Now we specify the file name of the first file-->
		<fileName>samplePalmApp.prc</fileName>
<!-- Now we specify the destination as $PALM_DEVICE  this is a special variable which will
place the file on the palm device, rather than the PC. -->
		<destination>$PALM_DEVICE</destination>
<!-- We always want the base application to be installed, so we set the filegroup to "0", a specially defined
fileGroup for required files. -->
		<fileGroup>0</fileGroup>
<!-- close up this installation file -->
	</installationFile>
<!-- Now we indicate that we are describing another installation file -->
	<installationFile>
<!-- Now we specify the file name -->
		<fileName>service_database.pdb</fileName>
<!-- Now we specify the destination as $PALM_DEVICE  this is a special variable which will
place the file on the palm device, rather than the PC. -->
		<destination>$PALM_DEVICE</destination>
<!-- This is part of the Supplemental Servic Database FileGroup. -->
		<fileGroup>2</fileGroup>
<!-- This is the displayed name of the file.  Note that we only specify this for non-required files (files
with a fileGroup other than 0 -->
                <fileDescription>Service Database</fileDescription>
<!-- Our application supports installing this file to an expansion card, so we select that here -->
		<cardInstallable>1</cardInstallable>
<!-- close up this installation file -->
	</installationFile>
<!-- now we close up the pInstaller element-->
</pInstaller>
