0

I get the following errors in DDMS. But how can I trace this to the line that throws this exception? What do you think could be the cause of the following error?

enter image description here

Is checking the DDMS the best way to debug an android application? I am using titanium.

Thank you,

Ryan

Nikhil
  • 16,194
  • 20
  • 64
  • 81
Ryan
  • 5,456
  • 25
  • 71
  • 129

1 Answers1

0

Your application attempt to convert a string to one of the numeric types, but that string does not have the appropriate format.

K_Anas
  • 31,226
  • 9
  • 68
  • 81
  • I believe line 321 refers to the source in `FloatingPointParser` in the Apache Harmony library. He must try to find the line that points to *his* source code I believe. – davidcesarino Jun 29 '12 at 17:31
  • @K_Anas can we debug the Titanium javaScript coding ? – rajpara Jun 29 '12 at 17:33
  • @AndroidCoader see this link https://wiki.appcelerator.org/display/tis/Debugging+JavaScript – K_Anas Jun 29 '12 at 17:45
  • Can I know which is the line that does that in my JS file in titanium ? Apache Harmony library is maybe used by titanium, but not by me. – Ryan Jun 29 '12 at 19:49
  • it was because I added dp to border width. It doesn't support that – Ryan Jul 14 '12 at 08:35