46 lines
1.0 KiB
JavaScript
46 lines
1.0 KiB
JavaScript
/*******************************************************************************
|
|
*
|
|
* Nx SDK管理器
|
|
*
|
|
*
|
|
*
|
|
* 2021.12.10
|
|
******************************************************************************/
|
|
|
|
const SDKBase = require( "nx.sdk.base" );
|
|
|
|
const NxSDKAndroid = cc.Class( {
|
|
|
|
extends: SDKBase,
|
|
name: "NxSDKAndroid",
|
|
|
|
// ============================================
|
|
// 设备信息
|
|
// ============================================
|
|
|
|
// 包参数
|
|
getPackArgs: function() {
|
|
|
|
let args = {
|
|
gname : "fc", // 游戏名
|
|
cnn : "dev", // 渠道名
|
|
lang : "tw", // 初始语种
|
|
ssl : 0, // SSL
|
|
gm : "1", // GM模式
|
|
log : 0, // 日志等级
|
|
};
|
|
return args;
|
|
},
|
|
|
|
// PHP路径列表
|
|
getPHPURLs: function() {
|
|
return [
|
|
"twsa.qa.fitfun.net:8310"
|
|
];
|
|
},
|
|
|
|
} );
|
|
|
|
// 模块导出
|
|
module.exports = NxSDKAndroid;
|