1

I'm currently using the sun preverifier to preverify my MIDlet. I'm finding that it can be a bit slow, doesnt give any decent error messages and is only available as a windows exe.

Are there any better preverifiers around that will work cross platform (linux specifically)

Dave L.
  • 43,907
  • 11
  • 63
  • 62
edsumner
  • 166
  • 2

2 Answers2

1

Proguard can preverify jar files. I guess you could disable the obfuscation if you didn't want that and just preverify with it.

It's a java application so it should run on Linux too.

http://proguard.sourceforge.net/manual/examples.html#microedition

izb
  • 50,101
  • 39
  • 117
  • 168
0

Actually there is also a linux version of WTK (from Sun) and I am using it every day on Ubuntu. Can't really comment on the speed.

About Proguard preverification - for some reasons this does not work, for me, on some jars and I have not been able to figure out why. Running 'preverified' jar with WTK emulator throws preverification errors.

Lucifer
  • 29,392
  • 25
  • 90
  • 143
JaanusSiim
  • 2,192
  • 3
  • 22
  • 24