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

项目报错:

完美解决:

在App下

gradle.build中Android标签中

添加以下内容:

compileOptions {

sourceCompatibility JavaVersion.VERSION_1_8

    targetCompatibility JavaVersion.VERSION_1_8

}

猜你喜欢

转载自www.cnblogs.com/leizz/p/10131455.html