20

I do nothing, just create new project then find this error. pls help me enter image description here

Rarblack
  • 4,559
  • 4
  • 22
  • 33
Sohaila Esawy
  • 233
  • 1
  • 2
  • 6

1 Answers1

80

This is a common issue and you just need to add

android {
...
  compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
...
}

There is explanation and direction in this link

Rarblack
  • 4,559
  • 4
  • 22
  • 33