09-21-2012 11:45 AM
Hi,
i have created the application which contain two jar file(this jar is also application) and both jar file are preverified successfully. and i have build the application successfully and sign the application. but when i am trying to launch application it is giving Error starting appName :Can't find entry point. i am not understanding the error and i am not creating alternate entry piont. please any help.
Thanks
cool fish to aggressive fish
09-22-2012 09:24 AM
i solved that problem but now i am getting the NoClassDefFoundError
problem statement : i have application which contain the only one class (calld class A)and that class extends the class(calld class B). and the the class B is in the jar file(jar file is preverified) and doing build using bb-ant . i am gettting build successfully and installation is also done successfully but whan i am launching the application i am getting the NOClassDefErrror.
class A extedns B
{
public A(){
super();
}
public static void main(){
A a = new A();
a.enterEventDispatcher();
}
my build.xml(snap)
<target name="build" depends="clean">
<rapc destdir="${project.build.dir}" output="${project.title}">
<src>
<fileset dir="${project.libs.dir}">
<include name="**/*.jar" />
</fileset>
<fileset dir="${project.src.dir}">
<include name="**/*.java" />
</fileset>
</src>
</rapc>
</target>
<sigtool sigtooljar="C:\EclipseNew\plugins\net.rim.ejde\vmT
<fileset dir="${project.build.dir}" includes="**/*.cod" />
</sigtool>
can any one tell me what could be the problem??
Thanks
cool fish