Reputation: 7800
I have a small HTML game which works fine on all browsers including mobile browsers. The only problem is with Opera Mini browser on Android devices.
I can debug my game on Chrome using ADB chrome plug-in. But is there any way to find out what's wrong on Opera mini?
Upvotes: 0
Views: 1224
Reputation: 5257
The accepted answer (about Opera for Android only) do not cover Opera Mini specifically.
For Javascript debugging, there is an Opera article/blog Opera Mini and JavaScript published in Sept 2012, describing the process in details using MicroEmulator.
Essentially you can have a server:console
report with console.log()
also supported.
PS: I doubt an HTML/JS game is going to work in Opera Mini though. Having a web site work on Opera Mini and look decent is hard enough. ^^
What's wrong with Opera Mini in this case is that it processes Javascript on the server side.
Upvotes: 0