Error: Invoke-customs are only supported starting with Android O (--min-api 26)
zhanzengyu opened this issue · 0 comments
zhanzengyu commented
try add compileOptions or modify like follow
android {
...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}