Choose your cart
Choose your cart
Receive up to $500 promo credit ($180 w/Welcome Unlimited, $360 w/ 5G Start, or $500 w/5G Do More, 5G Play More, 5G Get More or One Unlimited for iPhone plan (Welcome Unlimited and One Unlimited for iPhone plans can't be mixed w/other Unlimited plans; all lines on the account req'd on respective plans)) when you add a new smartphone line with your own 4G/5G smartphone on an eligible postpaid plan between 12/23/22 and 2/16/23. Promo credit applied over 36 months; promo credits end if eligibility requirements are no longer met. Excludes Verizon Prepaid plans.
$699.99 (128 GB only) device payment purchase or full retail purchase w/ new smartphone line on One Unlimited for iPhone (all lines on account req'd on plan), 5G Start, 5G Do More, 5G Play More or 5G Get More plan req'd. Less $699.99 promo credit applied over 36 mos.; promo credit ends if eligibility req’s are no longer met; 0% APR.
Hi,
I am working on vzw location api. we have an application already on blackberry.
my requirement is that, I have to add the nbi.jar to my build which is giving errors.
Error message: " This application requires the following module, which is not installed:nbi "
I have preverified the nbi.jar before running the rapc from JDE bin directory
preverify.exe -classpath "C:\Program Files\Research In Motion\BlackBerry JDE 5.0.0\lib\net_rim_api.jar" "nbi.jar"
My ant script:
<var name="device.property.build.boothclasspath" value="${build-single.basedir}/lib/nbi.jar;${jde.home}/lib/net_rim_api.jar" />
<wtkpackage profile="MIDP-2.0" config="CLDC-1.1"
jarfile="${target.device.dist.dir}/${app.dist.name}.jar" jadfile="${target.device.dist.dir}/tmp/${app.dist.name}.jad"
bootclasspath="${device.property.build.boothclasspath}" obfuscate="${device.dist.obfuscate}"
preverify="true" cldc="true" libclasspath="${target.device.res.dir}" verbose="true">
<fileset dir="${target.device.classes.dir}"/>
</wtkpackage>
<var name="vzw.nbi.jar" value="${build-single.basedir}/lib/nbi.jar" />
<exec executable="${jde.tools.home}/rapc.exe" dir="${target.device.dist.dir}">
<arg value="import=${bb.api.jar};${vzw.nbi.jar}" />
<arg value="-quiet" />
<arg value="codename=${target.device.dist.dir}/tmp/${app.dist.name}" />
<arg value="-midlet" />
<arg value="jad=${target.device.dist.dir}/tmp/${app.dist.name}.jad" />
<arg value="@source.files" />
</exec>
My jad entries also shows the nbi module but could not load, it says " nbi " module not found.
RIM-COD-Module-Dependencies: net_rim_cldc,nbi,net_rim_os,net_rim_bbapi_invoke,net_rim_locationapi.
How do i package the nbi into my cod file?
Any help would be appreciated.
What I would do is a search for adding COD for bedside mode to a BB phone. I had to do this after an update but I do not remember what I did. You will need to download the BB SAK known as the swiss army knife. It allows you to add cod to an OS. I think it was over in BB Leaks or something like that put it in Google search off your comp. and I'm sure you will find it.
radhakrishna wrote:Hi,
I am working on vzw location api. we have an application already on blackberry.
my requirement is that, I have to add the nbi.jar to my build which is giving errors.
Error message: " This application requires the following module, which is not installed:nbi "
I have preverified the nbi.jar before running the rapc from JDE bin directory
preverify.exe -classpath "C:\Program Files\Research In Motion\BlackBerry JDE 5.0.0\lib\net_rim_api.jar" "nbi.jar"
My ant script:
<var name="device.property.build.boothclasspath" value="${build-single.basedir}/lib/nbi.jar;${jde.home}/lib/net_rim_api.jar" />
<wtkpackage profile="MIDP-2.0" config="CLDC-1.1"
jarfile="${target.device.dist.dir}/${app.dist.name}.jar" jadfile="${target.device.dist.dir}/tmp/${app.dist.name}.jad"
bootclasspath="${device.property.build.boothclasspath}" obfuscate="${device.dist.obfuscate}"
preverify="true" cldc="true" libclasspath="${target.device.res.dir}" verbose="true">
<fileset dir="${target.device.classes.dir}"/>
</wtkpackage>
<var name="vzw.nbi.jar" value="${build-single.basedir}/lib/nbi.jar" />
<exec executable="${jde.tools.home}/rapc.exe" dir="${target.device.dist.dir}">
<arg value="import=${bb.api.jar};${vzw.nbi.jar}" />
<arg value="-quiet" />
<arg value="codename=${target.device.dist.dir}/tmp/${app.dist.name}" />
<arg value="-midlet" />
<arg value="jad=${target.device.dist.dir}/tmp/${app.dist.name}.jad" />
<arg value="@source.files" />
</exec>
My jad entries also shows the nbi module but could not load, it says " nbi " module not found.
RIM-COD-Module-Dependencies: net_rim_cldc,nbi,net_rim_os,net_rim_bbapi_invoke,net_rim_locationapi.
How do i package the nbi into my cod file?
Any help would be appreciated.