isAndroidStockBrowser()
Detect if the host is a an Android Stock browser.
This is available before the device "ready" event.
Authors might want to scale down on effects and switch to the CANVAS rendering method on those devices.
- Source code: utils/Device.js (Line 1359)
Example
var defaultRenderingMode = Phaser.Device.isAndroidStockBrowser() ? Phaser.CANVAS : Phaser.AUTO;
Please login to continue.