What is the best way to handle 3rd party dependencies in a .jad file? Is it possible to bundle a .jar? Do you need to unpack it and include the .class files?
|
|
See approach of working with kXML2 open source library:
|
|||
|
|
JAR files can NOT be combined with COD files. You first need to convert these JAR files to COD files (and you should sign them as well). If additional JAR files are supposed to be used as library COD files you need to use the Once you got your COD files you need to refer in your JAD file to all of the COD files including file sizes. The COD file might look like:
|
||
|
|
|
|
Can't speak too much for J2ME generically but for BlackBerry you can turn compiled .jar files into .cod files (the BlackBerry binary file format - basically an optimized .jar) and include those along with your application .cod files. You will have to list the additional .cod files in the .jad. This link from the BlackBerry knowledgebase should help. |
||
|
|
|
|
This is something your build system is supposed to handle. Netbeans (and I suspect Ant behaves similarly) uses 2 platform properties:
|
||
|
|
|
|
Hopefully this will help you. |
||
|
|
