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

安卓开发bug集(二)
解决方案:

在gradle.build中添加以下内容:

compileOptions {

sourceCompatibility JavaVersion.VERSION_1_8

targetCompatibility JavaVersion.VERSION_1_8

}

安卓开发bug集(二)

相关文章: