I am developing using React Native CLI as I need some Native Libraries in Android and iOS. Because of this I needed to use react-native link packagename
I then find out that the exposed methods for the Native Module in that package is not enough and I need to add some methods in the Native Module in Java (Android). Because of this I need to be able to debug in Java while I'm running React Native. I have tried System.out.println
and it does not work. How can I log some result or message in Java when it is being called in a React Native project????