Writer is not rendering the documents on Android

Writer is not rendering the documents on Android

I'm trying to open a document using the remote API, and Zoho Writer doesn't render it when the user is using Android. After a short investigation, I discovered that for Android devices (and only for them), the DOM was never rendered. In "writer_min_all.js", we can find :

DomBuilder. renderDOM = function( a) {
if (is_android)
console. log("blablabla");
else {
<do the rendering>
}
}

Is there any reason for this specific behaviour (I believe not, it looks like debug...) ?

Thank you.