javaexceptioncodenameonegui-builder

New GUI builder from CodeNameOne introduces exception?


I am testing new GUI builder and just by clicking new stuff to the GUI, I can't get thru a runtime exception:

Compiling 1 source file to /home/peter/Projekty/NetBeans/CN1_TestNewBuilder/TestNewBuilder/build/tmp Compiling 1 source file to /home/peter/Projekty/NetBeans/CN1_TestNewBuilder/TestNewBuilder/build/classes compile: run: java.lang.ClassNotFoundException: com.mycompany.myapp.MyApplication at java.net.URLClassLoader.findClass(URLClassLoader.java:381) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) at java.lang.ClassLoader.findSystemClass(ClassLoader.java:1004) at com.codename1.impl.javase.ClassPathLoader.findClass(ClassPathLoader.java:100) at com.codename1.impl.javase.ClassPathLoader.loadClass(ClassPathLoader.java:50) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:264) at com.codename1.impl.javase.Executor$1.run(Executor.java:56) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:756) at java.awt.EventQueue.access$500(EventQueue.java:97) at java.awt.EventQueue$3.run(EventQueue.java:709) at java.awt.EventQueue$3.run(EventQueue.java:703) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76) at java.awt.EventQueue.dispatchEvent(EventQueue.java:726) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) Java Result: 1 BUILD SUCCESSFUL (total time: 1 second)

I did not add a single line of my own code yet. At least I am not aware of anything :) Will anyone help me ?


Solution

  • It seems like you renamed or changed the package of your main application after project creation: com.mycompany.myapp.MyApplication.

    This is unrelated to the GUI builder. We suggest not doing that as package names are important and identify your apps to the stores. If you still want to change them you need to change them everywhere...