| 1234567891011121314151617181920212223242526 |
- /**
- * @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 init(){
-
- }
- }
|