I am looking for a place to start to design a Java application that could load a compiled (and perhaps signed or perhaps not) blackberry app onto a device. This means device enumeration + a means of installing / uploading the app onto the device. I know blackberry provides some programs to do with with their JDK but I want to design my own.
Anyone done / attempted this before?
Thanks
BlackBerry OS includes some classes for installing byte arrays as code modules. Look at net.rim.device.api.system.CodeModuleManager. You’ll have to define your own transport (TCP/IP? Bluetooth? USB?) to get the bytes from the BlackBerry COD into your application.