Android Studio编译报错:

Error: Invoke-customs are only supported starting with Android O (--min-api 26)

解决方案:

build.gradle文件中android节点下增加:

compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

Android Studio编译失败:Error: Invoke-customs are only supported starting with Android O (--min-api 26)

 

相关文章:

  • 2021-04-29
  • 2021-05-03
  • 2021-08-13
  • 2021-09-17
  • 2021-08-30
  • 2021-12-26
  • 2021-09-19
猜你喜欢
  • 2021-12-18
  • 2021-05-02
  • 2021-11-17
  • 2021-08-20
相关资源
相似解决方案