I'm loading my blackberry cod onto my USB connected BB Curve using the following :
/Users/JElsey/Development/tools/eclipse/plugins/net.rim.ejde.componentpack6.0.0_6.0.0.43/components/bin/javaloader -u load ./bin/SmartConf-BB/SmartConf-BB.cod
RIM Wireless Handheld Java Loader
Copyright 2001-2010 Research In Motion Limited
Connected
Loading ./bin/SmartConf-BB/SmartConf-BBDone
1479568 bytes sent at ~1315171 bps
Disconnected
I can verify the transfer was correct by running javaloader -u dir
and seeing my app listed as :
SmartConf$2dBB 0.0 1479568 Wed Sep 26 10:02:15 2012
However I can't actually see the app on the device anywhere.
- It is not listed under the applications menu
- Can't see anything under Options > 3rd Part Apps (not sure if it should be there or not)
- Connected to Desktop Manager I can't see it listed in apps.
Subsequently, I'm not able to install the app via Desktop Manager, when I attempt to install it all files (.cod, .alx etc) are non-selectable, not sure if this could be an issue here.
For additional info, I'm building my .cod file with the following ant task:
<target name="client-bb">
<property name="jde.home" location="/Users/JElsey/Development/tools/eclipse/plugins/net.rim.ejde.componentpack6.0.0_6.0.0.43/components/" />
<property name="bb.src" location="/Users/JElsey/Development/projects/internal/SmartHelper/SmartConf/apps/SmartConf/blackberry/native/"/>
<taskdef resource="bb-ant-defs.xml">
<classpath>
<pathelement location="./build-config/bb-ant-tools.jar"/>
</classpath>
</taskdef>
<mkdir dir="./bin/SmartConf-BB"/>
<rapc
srcdir="${bb.src}"
jdehome="${jde.home}"
destdir="./bin/SmartConf-BB/"
output="SmartConf-BB"
/>
</target>
Any suggestions as to why the cod file appears to be loaded, but can't be located on the device?