If you are experiencing an issue please mention the full platform your issue applies to:
IDE: NetBeans
Device: iPad Pro 9.7
OS: iOS 10.1.1
I compile debug version.
Error Displayed on show form (Form is empty): "An internal application error occurred: java.io.IOException: Err"
This is a strange one. Only some small "unrelated" changes causes this, while Andorid builds work just fine under the same code.
E.g.:
This works
Label lTime = new Label("Time");
//lTime.setVerticalAlignment(CENTER);
While this causes error
Label lTime = new Label("Time");
lTime.setVerticalAlignment(CENTER);
This works
Label lTime = new Label("Time");
this.addComponent(3, lTime);
Container c1 = new Container(new BoxLayout(BoxLayout.X_AXIS));
//c1.add(lTime);
...
this.addComponent(4, c1);
while this causes error
Label lTime = new Label("Time");
//this.addComponent(3, lTime);
Container c1 = new Container(new BoxLayout(BoxLayout.X_AXIS));
c1.add(lTime);
...
this.addComponent(3, c1);
I could go on and on ... so something must be really ...
Best regards,
CS