2
edits
Changes
no edit summary
{{Ecl_activities|type=BlackBerry|type-repo=mobile-blackberry}} __NOTOC__
== Understanding the Java Application files ==
In order to build BlackBerry applications on Eclipse, one must understand the basic files and their roles:
* '''''alx''' Files''
The .alx file is the application descriptor that provides information about the application and the location of the application's .cod files.BB Eclipse plug-in automatically generates the file.
Example:
<source lang="xml">
<loader version="1.0">
<application id="BBLab">
<name >
</name>
<description >
</description>
<version > 0.0.1 </version>
<vendor > ECL500 Course </vendor>
<copyright >
Copyright (c) 2011
</copyright>
<fileset Java="1.52" _blackberryVersion="[6.0.0)">
<directory >
6.0.0
</directory>
<files >
BBLab.cod
</files>
</fileset>
</application>
</loader>
</source>
------
== Read Code from the BlackBerry Samples ==