Hello,
I have a Cordova app, which is basically an InAppBrowser (a Cordova plugin) that shows a link to my C3 game on my server (HTTPS)
The InAppBrowser displays normal pages fine, and runs Construct2 games just fine (as far as I tested), but C3 games do not display.
First the loading screen shows up, but without the Construct logo (loading bar moves fine, but very slow), Then a black screen ..
My guess is that it is that something prevents loading files and assets.
Is there something we can do? some attributes or permissions?
Here is code of our Cordova page:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="../css/bootstrap.min.css">
</head>
<body>
<script>
function CallAddress() {
var ref = cordova.InAppBrowser.open('https://mylink.com/index.html', '_blank', 'location=yes');
}
window.onload = CallAddress;
</script>
<script type="text/javascript" src="../cordova.js"></script>
<script type="text/javascript" src="../js/landscape.js"></script>
</body>
</html>