I am getting following Exception on Android 2.2.1:

java.lang.NoSuchMethodError: java.lang.String.isEmpty

I am calling text.isEmpty from Scala. Any idea, how to solve this?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Use JRE/JDK 1.5, which did not have an isEmpty method on String. This will avoid situations where Scala uses 1.6's isEmpty instead of its own. If you have Java libraries as well, be sure to pick ones compatible with 1.5.

link|improve this answer
feedback

java.lang.String.isEmpty() was added in Gingerbread (2.3). You will have to write your own replacement function...

link|improve this answer
I am compiling against 2.2 and compiler compiles that. It finds isEmpty implementation in IndexedSeqOptimized.isEmpty. – TN. Dec 9 '10 at 10:17
That's some Scala weirdism. The Android API in your question definitely didn't appear until Gingerbread. See that developer.android.com/reference/java/lang/String.html#isEmpty() says "Since API Level 9" – Reuben Scratton Dec 9 '10 at 10:24
Yes, but I think it should use the implementation from the trait IndexedSeqOptimized. The question is, why it is not using this trait? – TN. Dec 9 '10 at 10:26
feedback

Alternativly use (text.length()>0) ?

link|improve this answer
Yes, I am using now text.length == 0. – TN. Dec 9 '10 at 10:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.