Reputation: 329
I'm trying to build an app with framework7 with phonegap for Android (API 23).
Everything works fine with "phonegap serve" command, and I tested on Phonegap Developer App.
Then I used "phonegap run android"
But I tried on Android Emulator, when I navigated the log windows shows:
"Cannot call determinedVisibility()"
And the $$.ajax() is not working on Android Emulator.
Please help!
Thank you guys!
Upvotes: 0
Views: 399
Reputation: 329
This is the solution:
You need to check for all of your HTML syntax (open/close tag, id duplication...) before building on Android. Because if before script tag there are any syntax error, your code will be terminated right there.
The Intellij Idea IDE will tell you about this syntax problem. So, check your "index.html", *.html files.
Upvotes: 1