Skip to main content

Development Environment Configuration

Introduction

Developers can deploy HTML5 games on a server and use MG's framework for testing and debugging.

HTML5 UWP Framework Configuration

The configuration file 【AppSetting.config】 is located in the Config folder:

<?xml version="1.0" encoding="utf-8" ?>
<appSettings>
<!--Whether to enable WebView2 debug mode. 1: Debug mode, otherwise: Production mode-->
<add key="IsWebViewDebug" value="1" />

<!--Title-->
<add key="Title" value="HTML5 Game" />
<!--Application ID-->
<add key="AppId" value="692e5d6a207c9dd383ba56f7" />
<!--Secret Key-->
<add key="SecretKey" value="MIGTAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBHkwdwIBAQQgMpbHh1W/WLX1vfZGIF73oT1z4mRZPn8ACbDoLDYeu5agCgYIKoZIzj0DAQehRANCAAQQ37SO+uxHtFcQQ3DW6/GqrC9wHMZ/NR7XygAtCsSuT3I6CKpTo5YHV4W5JS783oxYh4eeG+bJr6zsZ+dDdv0K" />
<!--AppUrl-->
<add key="AppUrl" value="http://mdc.mguwp.net/ads/index.html" />
<!--Splash Screen Ad ID-->
<add key="SpreadAd" value="e830c3173602460eb1cb295de96db295" />
<!--Exit Screen Ad ID-->
<add key="QuitAd" value="4a2bffb381c64f239659e75649637dce" />
<!--Whether to add timestamp to AppUrl. 1: Enable, otherwise: Disable-->
<add key="UrlAddTimestamp" value="1" />
</appSettings>