I have an application that I've created that's working just fine on my real blackberry right now, the only problem is that the version and vendor that I've set do now show up correctly. My blackberry seems to think the application is version 0.0 and the vendor is <unknown>.
I have changed the property in my project to the Version and Vendor that I want.
I've created an ALX file, and it seems to have the correct information in it when I look at it in notepad. Here is my ALX file...
Code:
<loader version="1.0">
<application id="CSTmobile">
<name >
CST Mobile
</name>
<description >
View CST information on your blackberry phone.
</description>
<version >
1.0
</version>
<vendor >
(I use a real name here)
</vendor>
<copyright >
Copyright (c) 2008 (Again, I use a real name here)
</copyright>
<fileset Java="1.24">
<directory >
</directory>
<files >
CSTmobile.cod
</files>
</fileset>
</application>
</loader>
To download my app, people go to a link on their mobile phones, and there is a hyperlink there that points to the CSTmobile.jad file. When they click on it, it says something like "would you like to replace cst mobile 0.0 with cst mobile 0.0".
I use JDE 4.1.0.185 by research in motion.
All I can think of is I'm created the ALX file at the wrong time or signing it incorrectly or perhaps the metadata in the COD file is false.
Thank you for any help.