I finally solved this problem.  In file
androidjxlsrc.jxl.write.biff.NumberFormatRecord, method
trimInvalidChars, change the following two lines from:

      firstHash = firstHash == -1?firstHash =
Integer.MAX_VALUE:firstHash;
      firstZero = firstZero == -1?firstZero =
Integer.MAX_VALUE:firstZero;

which are unforgivable anyway, to the following:

      firstHash = firstHash == -1?Integer.MAX_VALUE:firstHash;
      firstZero = firstZero == -1?Integer.MAX_VALUE:firstZero;

That made the Dalvik error go away for me.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to