I have been developed one utility named, Ticker.
I packed in a Jar and try to use in different project.
I am using Eclipse. At the time of creating binary (JAD/JAR) I am getting pre-verification error.
After that I tried one workaround. I create binary and manually inject required classes in it.
When I tried to run on Sun Emulator (WTK 2.5 DefaultColorPhone) getting pre-verification error. On the other hand build is working fine on KEmulator (all you know KEmulator run on JVM rather than KVM).
Subsequently, I looked in a lib and found classes are not verified.
Then I do verification using WTK preverify.exe; but what I noticed out of 4, 2 classes are not pre-verified (StackMap entry is missing).
Class Hierarchy
Ticker.java
//Verified
Text.java extends Component.java
//Verified
Component.java extends TimeControlled.java
//Not Verified
TimeControlled.java
//Not Verified
Please get me rid of that.
Amit