My existing project was working fine with
"react-native": "0.59.x",
"react-native-camera": "^2.11.2"
After i added "react-native-push-notification" to my project =>
"react-native": "0.59.x",
"react-native-camera": "^2.11.2",
"react-native-push-notification": "^2.1.0",
I encountered several issues, and i fixed them one by one and after add
android.enableJetifier=true
android.useAndroidX=true
to the gradle.properties i ended up with a issue in React-Native-Camera
Execution failed for task ':react-native-camera:compileGeneralDebugJavaWithJavac'
I doubt the error occurred because of some version mismatches, but i couldn't find it. Can someone help me to resolve this issue?