|
@@ -5,6 +5,7 @@ import AudioSystem from "./AudioSystem";
|
|
|
import DataSystem from "./DataSystem";
|
|
import DataSystem from "./DataSystem";
|
|
|
import HttpSystem from "./HttpSystem";
|
|
import HttpSystem from "./HttpSystem";
|
|
|
import LoadResUtil from "../utils/LoadResUtil";
|
|
import LoadResUtil from "../utils/LoadResUtil";
|
|
|
|
|
+import { EncryptUtil } from "../utils/EncryptUtil";
|
|
|
|
|
|
|
|
|
|
|
|
|
class MKSystem {
|
|
class MKSystem {
|
|
@@ -15,7 +16,11 @@ class MKSystem {
|
|
|
/** 工具 */
|
|
/** 工具 */
|
|
|
time: TimeUtil;
|
|
time: TimeUtil;
|
|
|
file: FileUtil;
|
|
file: FileUtil;
|
|
|
|
|
+<<<<<<< .mine
|
|
|
|
|
+ encrypt:EncryptUtil;
|
|
|
|
|
+=======
|
|
|
loadRes:LoadResUtil;
|
|
loadRes:LoadResUtil;
|
|
|
|
|
+>>>>>>> .theirs
|
|
|
|
|
|
|
|
/** SDK */
|
|
/** SDK */
|
|
|
bugly:BuglySDK;
|
|
bugly:BuglySDK;
|
|
@@ -32,6 +37,7 @@ class MKSystem {
|
|
|
this.time = new TimeUtil();
|
|
this.time = new TimeUtil();
|
|
|
this.file = new FileUtil();
|
|
this.file = new FileUtil();
|
|
|
this.loader = new LoadResUtil();
|
|
this.loader = new LoadResUtil();
|
|
|
|
|
+ this.encrypt = new EncryptUtil();
|
|
|
|
|
|
|
|
//sdk
|
|
//sdk
|
|
|
this.bugly = new BuglySDK();
|
|
this.bugly = new BuglySDK();
|