Ionic View App opens with blank screen

Hi guys,

my app works fine in the browser and on my android device.
No console errors either.

I now want to show it to friends by using the Ionic View App (from the appstore).
The app opens in the Ionic View App, but all I see is a blank screen and the top bar (see screenshot below).
So it seems to work somehow at least.
Any ideas how I can debug the Ionic View App or what I should be looking for?
I read a lot of related tickets, but nothing solved this issue.

Here some info of the setup:
Cordova CLI: 5.2.0
Ionic Version: 1.1.0
Ionic CLI Version: 1.6.4
Ionic App Lib Version: 0.3.8
OS: Windows 7 SP1
Node Version: v0.12.4

Here the index.html and the app.js:
https://jsfiddle.net/hovjfhpx/

And here a screenshot from the Ionic App View on my Android Moto G:
image

Thanks a lot, hope you guys come up with any good ideas,

Mike

Still stuck on this - anyone with good ideas?

I had this problem. In my case it was because I had this script:
script src="//code.angularjs.org/1.4.0/angular-cookies.js" /script
After downloading the libary locally:
script src=“js/lib/angular-cookies.js.js” /script
it worked fine.

1 Like

Thanks man, this helped me.