| 123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * @description 应用数据
- * @author 邹勇
- */
- export class AppData {
- /** 错误日志游戏名标志,尽量短 */
- public appNameBugly: string = '3xiao';
- public appVersion: string = '';
- /** 投放渠道号 */
- public tfChannel: string = '';
- /** api版本 */
- public version: string = '1.0.0';
- public appId: string = 'wx17e502b5f230fd9a';
- public mac: string = 'c9:65:e2:1c:b0:23,f6:60:e4:1a:b7:27';
- /** 设备信息 */
- public machineInfo = {
- "android_id": "",
- "idfa": "",
- "imei": "",
- "mac": "",
- "oaid": "",
- "umid": ""
- };
- public init() {
- }
- }
|