These are the errors that pop up when trying to compile an application. There is no code in it except for automatically generated. With what it can be connected?

enter image description here

  • one
    File - Project Structure - Use the embedded JDK , ticked? - post_zeew

1 answer 1

The error "Unsupported major.minor version 52.0" means that the application was compiled on the Java 8 version and will not work on the versions below.

Go to the settings and check if the JDK and Android SDK meet the requirements of the compiled project.

  • And the remaining 75 errors? - Andrei
  • 3
    If the versions are incompatible, then there may be hundreds of errors. In each line where there is a mismatch. First install the correct JDK. - Michael Rebrov
  • In fact, you are using an API that you do not have. You call methods that you don't have and use classes that behave differently. - Mikhail Rebrov
  • Hence so many mistakes - Mikhail Rebrov