Home > database >  "caused by java.lang.reflect.invocationtargetexception" Getting error during android signe
"caused by java.lang.reflect.invocationtargetexception" Getting error during android signe

Time:03-31

I have a react native app, currently, I am trying to generate an android signed apk, but suddenly it's starting to give me an error.

RN Version : 0.63.0
typescript : 3.9.6.
Android version : 2020.3.1 Patch 2 ( Android studio arctic fox ).
JDK version : jdk-11.0.14

Earlier it was working fine, tried many solutions given based on the subject lines quoted part. But none of them are working.

Please let me know if you know anything about it.

enter image description here

CodePudding user response:

app level -> build.gradle

android { ... lintOptions { checkReleaseBuilds false } }

This works for me

  • Related