03-25-2011 12:30 PM
If you choose to export the jar file in the Build Options (as documented) using the Eclipse Plugin, it works fine. But, if you neglect to check off the export option, you end up with that message.
I checked out both command lines used by Eclipse and they differ by a single character. The difference is between importing the jar, and including the jar.
In the broken line, the Analytics Jar is imported because it's joined to the net_rim_api.jar in the import statement with a semi-colon, and the Eclipse compiler output is the actual source for rapc:
-import=C:\Eclipse1.3b15\plugins\net.rim.ejde.comp
But, in the working version, the semi-colon is now a space and the jar is being included as well as the Eclipse compiler output:
-import=C:\Eclipse1.3b15\plugins\net.rim.ejde.comp
See if you can make BB Ant do that (assuming I'm accurate about what it's doing now).
06-15-2011 03:28 PM