Reputation: 17352
I try to create my first iOS app with meteor. Therefore I added the package meteor add-platform ios
and I started the app via meteor run ios
.
xcode and the ios simulator are started, but I just see the meteor logo. Nothing else, no error message and I can't do anything in the app.
As this is completely new for me, my question is, if I forgot something elemental or did a big mistake. As I don't get any error message, I don't know how to find any error...
Maybe you have some ideas for me what to do
Upvotes: 0
Views: 55
Reputation: 369
Run the app first in the browser using just the meteor command. Open the app using Chrome on localhost:3000. Open the developer tools, and there should be your logs. If those logs do not help, you may need to see the app logs.
On Android you can see the OS and App logs using Android logcat (hint use Android Studio its logcat gui has easy filters to hide the noise of other apps and the OS on the device).
Upvotes: 0