I am getting below error after installing itext7:
com.android.tools.r8.a: MethodHandle.invoke and MethodHandle.invokeExact are only supported starting with Android O (--min-api 26)
implementation "com.itextpdf:itext7-core:7.1.3"
I tried following solutions but it didn't work either:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
In addition, I tried downgrading the version of itext to implementation "com.itextpdf:itext7-core:5.0.6" and it didn't work either.
Can anyone help how do I resolve this issue? Thanks