Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Application Project has not been registered

Tags:

react-native

I am trying to run my react native app on my device . So I am running react-native start everything looks fine. enter image description here

and when running react-native run-android I get this error enter image description here

otherwise, I get this error in my device

enter image description here

like image 887
Sihem Hcine Avatar asked Jul 05 '17 11:07

Sihem Hcine


1 Answers

My issue was the name I gave the project differed from the name that was being registered in AppRegistry

AppRegistry.registerComponent('proj', () => proj)

proj needs to be the same as the name of the project in the gradle and config files.

like image 184
Harry Moreno Avatar answered Sep 17 '22 15:09

Harry Moreno