implementation 'org.apache.poi:poi:5.0.0'
above dependencies work fine when I run on the emulator/phone using Run 'app' but when I try to build apk then I got the below error.
com.android.tools.r8.a: MethodHandle.invoke and MethodHandle.invokeExact are only supported starting with Android O (--min-api 26)
I try below
if I remove dependencies it works fine.
if I update minSdkVersion 21 to 26 then it works fine.
so my problem is I want to use minsdkversion 21 and also that dependency(this feature(EXCEL FILE) only available to sdkversion>=26)
so how can I achieve the same?
THANK YOU IN ADVANCE.