File is Out of sync Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 16

StackOverflow https://stackoverflow.com/questions/23464647

  •  15-07-2023
  •  | 
  •  

Question

[2014-05-05 09:05:20 - android-support-v7-appcompat] File is Out of sync
[2014-05-05 09:05:22 - android-support-v7-appcompat] Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 16

what I must do?

Was it helpful?

Solution

Changing Compiler compliance level in Java Compiler settings to 1.6 solved the problem for me. (Project Properties -> Java Compiler -> Enable project specific settings -> Compiler compliance level -> 1.6)

OTHER TIPS

I disagree with @Iliya Gug. This error cause by setting Project build target to 4.0 (API 14). If change to Java 1.6, you'll can't use Java 1.7 sode style.
For ex: ArrayList myArrayList = new ArrayList<>();. To fix this, set your target to 4.4 (API 19) or higher.

I had the same problem what i did is that:

Project-->Properties>Project Build Target (set to 4.4.2)

And soon after that the problem vanished away

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top