Java Blackberry build error
I get this in the new error report when building a Java Blackberry example which is basically the vector movement example with just the 'Follow The Leader' frame remaining....
Code:
Resolving
Application/CRunApp.class:0: Warning!: Invocation of questionable method: java.lang.String.<init>(String) found in: Application.CRunApp.initGlobal()
Movements/CMoveDefExtension.class:0: Warning!: Invocation of questionable method: java.lang.String.<init>(String) found in: Movements.CMoveDefExtension.setModuleName(String,int)
Expressions/CValue.class:0: Warning!: Invocation of questionable method: java.lang.String.<init>(String) found in: Expressions.CValue.forceValue(CValue)
java.lang.Math: Warning!: No definition found for method: atan2
CRunMvtclickteam_vector: Error!: Missing stack map at label: 276
Re: Java Blackberry build error
Simply adding an AO to a new project and setting to Vector Movement gives:
Code:
Application/CRunApp.class:0: Warning!: Invocation of questionable method: java.lang.String.<init>(String) found in: Application.CRunApp.initGlobal()
Movements/CMoveDefExtension.class:0: Warning!: Invocation of questionable method: java.lang.String.<init>(String) found in: Movements.CMoveDefExtension.setModuleName(String,int)
RunLoop/CRun.class:0: Warning!: Invocation of questionable method: java.lang.String.<init>(String) found in: RunLoop.CRun.allocRunHeader()
RunLoop/CObjInfo.class:0: Warning!: Invocation of questionable method: java.lang.String.<init>(String) found in: RunLoop.CObjInfo.copyData(COI)
Expressions/CValue.class:0: Warning!: Invocation of questionable method: java.lang.String.<init>(String) found in: Expressions.CValue.<init>(CValue)
CRunMvtclickteam_vector: Error!: Missing stack map at label: 59
Re: Java Blackberry build error
In fact none of the additional movements work...
Re: Java Blackberry build error
Ah I see why... The Build Blackberry routine takes the normal Java movement extensions instead of taking the mobile extensions. Sorry... that will be fixed in the next update.
Re: Java Blackberry build error
Thanks, got it to work by swapping and renaming a couple of files. Very cool :D