Hello,
I have installed Java 1.5 and MIDP 1.0.3. When I use the J2ME
Wireless Toolkit and hit the "Build" button to build the project
I get the following error:
Builing "Hello"
javac: target release 1.1. conflicts with default source release 1.5
com.sun.kvem.ktools.ExecutionException
Build failed
Any idea how come I am getting this? Should I downgrade my JDK?
Or perhaps upgrade to MIDP 2.0 (which among other things has SSL
support, which is missing in MIDP 1.0).
Thanks,
JG
John Goche - 17 Dec 2005 20:12 GMT
Hello,
I solved this problem by downgrading to JDK 1.4.2
and updating the corresponding Path and CLASSPATH
variables on WinXP:
$ javac -target 1.1 -bootclasspath \
%MIDP_HOME%\classes Hello.java
$ preverify -cldc -classpath %MIDP_HOME%\classes;. -d . Hello
$ midp -classpath . Hello
Thanks,
JG