I\'ve created the project using the following command.
react-native init Awesome_Project
I\'ve started the packager using the following com
For anyone else running into this issue where there are no solutions, if you've linked libraries, make sure that in the settings.gradle
file located in ProjectName/android
has your app in the include statement, like so: include ':ThirdPartyLibrary', ':app'
. I forgot :app
and it was build and installing the 3rd party library, but not the actual app, resulting in the problem.