You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to run it, you are gonna have to flip values for "main" and "_main" in package json. This is nessesary because both npm and expo have a notion of a main file, but for npm it's the file that you run when you import this library in your app; and for expo it's the file that it uses to display the example app.
37
+
In order to run it, you are gonna have to flip values for "main" and "\_main" in package json. This is nessesary because both npm and expo have a notion of a main file, but for npm it's the file that you run when you import this library in your app; and for expo it's the file that it uses to display the example app.
18
38
19
39
Don't forget to flip it back before commiting.
20
40
21
41
**After you update fix the package.json**
22
42
23
43
```sh
24
-
yarn start # And get you expo app ready on your phone
44
+
npm start # And get your Expo app ready on your phone
0 commit comments