Error: Using 1.7 requires compiling with Android 4.4 (kitkat); current using API 16

1

Using a switch case with a string .

Eclipse has reported an error and has offered to switch to compiling 1.7 .

I accepted, now it gives error and I can not return.

How do I resolve this?

I want to change the language level to 1.6, but I do not find this anywhere.

    
asked by anonymous 05.11.2014 / 13:07

1 answer

2

The language level you are using (Java 1.7) is available from Kit Kat.

If you want to continue using this language level, you should change the manifest for the SDK 19.

Otherwise, change the language level to 1.6.

    
05.11.2014 / 13:13