PackConfig.json 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  1. {
  2. "androids": [
  3. {
  4. "channelName": "游逸",
  5. "appName": "心力物语",
  6. "distributeName": "BT资源包(更新使用)(第九大区)",
  7. "channelUniqueId": "12002001",
  8. "bundleId": "com.xjro.yy",
  9. "gameVersionCode": {
  10. "major": 0,
  11. "minor": 1,
  12. "release": 0,
  13. "patch": 0
  14. },
  15. "resVersionCode": {
  16. "major": 0,
  17. "minor": 1,
  18. "release": 0,
  19. "patch": 0
  20. },
  21. "iconRelativePath": "XinLiWuYu",
  22. "defineSymbols": [
  23. "USE_LUA",
  24. "VUPLEX_CCU",
  25. "BUGLY",
  26. "FPS_DISABLE"
  27. ],
  28. "logo1RelativePath": "xlwy.png",
  29. "loginRelativePath": "Default",
  30. "gameAssetsPath": "Default",
  31. "specialFuncShield": false,
  32. "splashScreenRelativeFiles": [
  33. "wenting_splash.png"
  34. ],
  35. "obscureKey": "",
  36. "obscureOffsetMin": 0,
  37. "obscureOffsetValues": [],
  38. "sdkVerifyUrl": "http://43.226.57.217:81//",
  39. "serverListUrl": "http://43.226.57.217:81//serverlist",
  40. "notifyUrl": "http://43.226.57.217:81//notice",
  41. "specialInfoUrl": "http://43.226.57.217:81//channel",
  42. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  43. "leBian_MainChId": "69423",
  44. "leBian_ClientChId": "PATCH_V3",
  45. "leBian_SECID": "dmcve6kq.c",
  46. "plugins": [
  47. "common",
  48. "Bugly",
  49. "FairGuard",
  50. "Lebian",
  51. "YOUYI_1.6.9"
  52. ],
  53. "sdkBridges": [
  54. "Bugly",
  55. "YOUYI_1.6.9"
  56. ],
  57. "keystoreName": "wenting.keystore",
  58. "keystorePass": "n9P5j2b7blMm",
  59. "keyaliasName": "game",
  60. "keyaliasPass": "KlYX666Ro"
  61. },
  62. {
  63. "channelName": "游逸",
  64. "appName": "心力物语",
  65. "distributeName": "正式服",
  66. "channelUniqueId": "12002002",
  67. "bundleId": "com.xjro.yy",
  68. "gameVersionCode": {
  69. "major": 1,
  70. "minor": 0,
  71. "release": 0,
  72. "patch": 6
  73. },
  74. "resVersionCode": {
  75. "major": 0,
  76. "minor": 1,
  77. "release": 0,
  78. "patch": 0
  79. },
  80. "iconRelativePath": "XinLiWuYu",
  81. "defineSymbols": [
  82. "USE_LUA",
  83. "VUPLEX_CCU",
  84. "BUGLY",
  85. "FPS_DISABLE"
  86. ],
  87. "logo1RelativePath": "xlwy.png",
  88. "loginRelativePath": "Default",
  89. "gameAssetsPath": "Default",
  90. "specialFuncShield": false,
  91. "splashScreenRelativeFiles": [],
  92. "obscureKey": "",
  93. "obscureOffsetMin": 0,
  94. "obscureOffsetValues": [],
  95. "sdkVerifyUrl": "http://165.154.29.92:81//",
  96. "serverListUrl": "http://165.154.29.92:81//serverlist",
  97. "notifyUrl": "http://165.154.29.92:88/res/NoticeNew/",
  98. "specialInfoUrl": "http://165.154.29.92:81//channel",
  99. "customerServiceInfoUrl": "http://165.154.29.92:81//vipService",
  100. "leBian_MainChId": "69423",
  101. "leBian_ClientChId": "youyi_bt_jj",
  102. "leBian_SECID": "dmcve6kq.c",
  103. "plugins": [
  104. "common",
  105. "Bugly",
  106. "FairGuard",
  107. "Lebian",
  108. "YOUYI_1.6.9"
  109. ],
  110. "sdkBridges": [
  111. "Bugly",
  112. "YOUYI_1.6.9"
  113. ],
  114. "keystoreName": "wenting.keystore",
  115. "keystorePass": "n9P5j2b7blMm",
  116. "keyaliasName": "game",
  117. "keyaliasPass": "KlYX666Ro"
  118. },
  119. {
  120. "channelName": "游逸",
  121. "appName": "心力物语",
  122. "distributeName": "測試服",
  123. "channelUniqueId": "12002007",
  124. "bundleId": "com.xjro.yy",
  125. "gameVersionCode": {
  126. "major": 1,
  127. "minor": 0,
  128. "release": 0,
  129. "patch": 6
  130. },
  131. "resVersionCode": {
  132. "major": 0,
  133. "minor": 1,
  134. "release": 0,
  135. "patch": 0
  136. },
  137. "iconRelativePath": "XinLiWuYu",
  138. "defineSymbols": [
  139. "USE_LUA",
  140. "VUPLEX_CCU",
  141. "FPS_DISABLE",
  142. "GAME_DEBUG"
  143. ],
  144. "logo1RelativePath": "xlwy.png",
  145. "loginRelativePath": "Default",
  146. "gameAssetsPath": "Default",
  147. "specialFuncShield": false,
  148. "splashScreenRelativeFiles": [],
  149. "obscureKey": "",
  150. "obscureOffsetMin": 0,
  151. "obscureOffsetValues": [],
  152. "sdkVerifyUrl": "http://43.226.57.217:81//",
  153. "serverListUrl": "http://43.226.57.217:81//serverlist",
  154. "notifyUrl": "http://43.226.57.217:88/res/NoticeNew/",
  155. "specialInfoUrl": "http://43.226.57.217:81//channel",
  156. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  157. "leBian_MainChId": "69423",
  158. "leBian_ClientChId": "youyi_bt_jj",
  159. "leBian_SECID": "dmcve6kq.c",
  160. "plugins": [
  161. "common",
  162. "Bugly",
  163. "FairGuard",
  164. "Lebian",
  165. "YOUYI_1.6.9"
  166. ],
  167. "sdkBridges": [
  168. "Bugly",
  169. "YOUYI_1.6.9"
  170. ],
  171. "keystoreName": "wenting.keystore",
  172. "keystorePass": "n9P5j2b7blMm",
  173. "keyaliasName": "game",
  174. "keyaliasPass": "KlYX666Ro"
  175. },
  176. {
  177. "channelName": "i7game",
  178. "appName": "超冒险小镇物语2",
  179. "distributeName": "測試服--0.1",
  180. "channelUniqueId": "12002009",
  181. "bundleId": "com.xjro.yy",
  182. "gameVersionCode": {
  183. "major": 1,
  184. "minor": 0,
  185. "release": 0,
  186. "patch": 6
  187. },
  188. "resVersionCode": {
  189. "major": 0,
  190. "minor": 1,
  191. "release": 0,
  192. "patch": 0
  193. },
  194. "iconRelativePath": "XinLiWuYu",
  195. "defineSymbols": [
  196. "USE_LUA",
  197. "VUPLEX_CCU",
  198. "BUGLY",
  199. "FPS_DISABLE",
  200. "GAME_DEBUG",
  201. "GAME_ONE"
  202. ],
  203. "logo1RelativePath": "xlwy.png",
  204. "loginRelativePath": "i7Game",
  205. "gameAssetsPath": "Default",
  206. "specialFuncShield": false,
  207. "splashScreenRelativeFiles": [],
  208. "obscureKey": "",
  209. "obscureOffsetMin": 0,
  210. "obscureOffsetValues": [],
  211. "sdkVerifyUrl": "http://101.43.46.101:81//",
  212. "serverListUrl": "http://101.43.46.101:81//serverlist",
  213. "notifyUrl": "http://101.43.46.101:88//res/NoticeNew/",
  214. "specialInfoUrl": "http://101.43.46.101:88//res/Channel/agreement.json",
  215. "customerServiceInfoUrl": "http://101.43.46.101:81//vipService",
  216. "leBian_MainChId": "69423",
  217. "leBian_ClientChId": "youyi_bt_jj",
  218. "leBian_SECID": "dmcve6kq.c",
  219. "plugins": [
  220. "common",
  221. "Bugly",
  222. "FairGuard",
  223. "qucik_cn"
  224. ],
  225. "sdkBridges": [
  226. "Bugly",
  227. "quick_cn_android"
  228. ],
  229. "keystoreName": "wenting.keystore",
  230. "keystorePass": "n9P5j2b7blMm",
  231. "keyaliasName": "game",
  232. "keyaliasPass": "KlYX666Ro"
  233. },
  234. {
  235. "channelName": "i7game",
  236. "appName": "Quick母包",
  237. "distributeName": "国内正式服",
  238. "channelUniqueId": "12002010",
  239. "bundleId": "com.xjro.yy",
  240. "gameVersionCode": {
  241. "major": 0,
  242. "minor": 1,
  243. "release": 0,
  244. "patch": 0
  245. },
  246. "resVersionCode": {
  247. "major": 0,
  248. "minor": 1,
  249. "release": 0,
  250. "patch": 0
  251. },
  252. "iconRelativePath": "i7Game",
  253. "defineSymbols": [
  254. "USE_LUA",
  255. "VUPLEX_CCU",
  256. "BUGLY",
  257. "FPS_DISABLE",
  258. "CN_I7GAME_0_1"
  259. ],
  260. "logo1RelativePath": "xlwy.png",
  261. "loginRelativePath": "i7Game",
  262. "gameAssetsPath": "Default",
  263. "specialFuncShield": false,
  264. "splashScreenRelativeFiles": [],
  265. "obscureKey": "",
  266. "obscureOffsetMin": 0,
  267. "obscureOffsetValues": [],
  268. "sdkVerifyUrl": "http://43.248.187.68:81//",
  269. "serverListUrl": "http://43.248.187.68:81//serverlist",
  270. "notifyUrl": "http://43.248.187.68:88//res/NoticeNew/",
  271. "specialInfoUrl": "http://43.248.187.68:88//res/Channel/agreement.json",
  272. "customerServiceInfoUrl": "http://43.248.187.68:81//vipService",
  273. "leBian_MainChId": "69423",
  274. "leBian_ClientChId": "youyi_bt_jj",
  275. "leBian_SECID": "dmcve6kq.c",
  276. "plugins": [
  277. "common",
  278. "Bugly",
  279. "FairGuard",
  280. "qucik_cn"
  281. ],
  282. "sdkBridges": [
  283. "Bugly",
  284. "quick_cn_android"
  285. ],
  286. "keystoreName": "wenting.keystore",
  287. "keystorePass": "n9P5j2b7blMm",
  288. "keyaliasName": "game",
  289. "keyaliasPass": "KlYX666Ro"
  290. },
  291. {
  292. "channelName": "i7game",
  293. "appName": "超冒险小镇物语2",
  294. "distributeName": "正式服--0.1",
  295. "channelUniqueId": "12002011",
  296. "bundleId": "com.xjro.yy",
  297. "gameVersionCode": {
  298. "major": 1,
  299. "minor": 0,
  300. "release": 0,
  301. "patch": 6
  302. },
  303. "resVersionCode": {
  304. "major": 0,
  305. "minor": 1,
  306. "release": 0,
  307. "patch": 0
  308. },
  309. "iconRelativePath": "XinLiWuYu",
  310. "defineSymbols": [
  311. "USE_LUA",
  312. "VUPLEX_CCU",
  313. "BUGLY",
  314. "FPS_DISABLE",
  315. "CN_I7GAME_0_1"
  316. ],
  317. "logo1RelativePath": "xlwy.png",
  318. "loginRelativePath": "i7Game",
  319. "gameAssetsPath": "Default",
  320. "specialFuncShield": false,
  321. "splashScreenRelativeFiles": [],
  322. "obscureKey": "",
  323. "obscureOffsetMin": 0,
  324. "obscureOffsetValues": [],
  325. "sdkVerifyUrl": "http://103.239.245.64:81//",
  326. "serverListUrl": "http://103.239.245.64:81//serverlist",
  327. "notifyUrl": "http://weix.vvfyj.cn/res/NoticeNew/",
  328. "specialInfoUrl": "http://weix.vvfyj.cn/res/Channel/agreement.json",
  329. "customerServiceInfoUrl": "http://103.239.245.64:81//vipService",
  330. "leBian_MainChId": "69423",
  331. "leBian_ClientChId": "youyi_bt_jj",
  332. "leBian_SECID": "dmcve6kq.c",
  333. "plugins": [
  334. "common",
  335. "Bugly",
  336. "FairGuard",
  337. "qucik_cn"
  338. ],
  339. "sdkBridges": [
  340. "Bugly",
  341. "quick_cn_android"
  342. ],
  343. "keystoreName": "wenting.keystore",
  344. "keystorePass": "n9P5j2b7blMm",
  345. "keyaliasName": "game",
  346. "keyaliasPass": "KlYX666Ro"
  347. },
  348. {
  349. "channelName": "i7game",
  350. "appName": "超冒险小镇物语2",
  351. "distributeName": "正式服--专",
  352. "channelUniqueId": "12002012",
  353. "bundleId": "com.xjro.yy",
  354. "gameVersionCode": {
  355. "major": 1,
  356. "minor": 0,
  357. "release": 0,
  358. "patch": 6
  359. },
  360. "resVersionCode": {
  361. "major": 0,
  362. "minor": 1,
  363. "release": 0,
  364. "patch": 0
  365. },
  366. "iconRelativePath": "XinLiWuYu",
  367. "defineSymbols": [
  368. "USE_LUA",
  369. "VUPLEX_CCU",
  370. "BUGLY",
  371. "FPS_DISABLE",
  372. "CN_I7GAME_ZHUAN"
  373. ],
  374. "logo1RelativePath": "xlwy.png",
  375. "loginRelativePath": "i7Game",
  376. "gameAssetsPath": "Default",
  377. "specialFuncShield": false,
  378. "splashScreenRelativeFiles": [],
  379. "obscureKey": "",
  380. "obscureOffsetMin": 0,
  381. "obscureOffsetValues": [],
  382. "sdkVerifyUrl": "http://43.248.186.74:81//",
  383. "serverListUrl": "http://43.248.186.74:81//serverlist",
  384. "notifyUrl": "http://43.248.186.74:88/res/NoticeNew/",
  385. "specialInfoUrl": "http://43.248.186.74:88/res/Channel/agreement.json",
  386. "customerServiceInfoUrl": "http://43.248.186.74:81//vipService",
  387. "leBian_MainChId": "69423",
  388. "leBian_ClientChId": "youyi_bt_jj",
  389. "leBian_SECID": "dmcve6kq.c",
  390. "plugins": [
  391. "common",
  392. "Bugly",
  393. "FairGuard",
  394. "qucik_cn"
  395. ],
  396. "sdkBridges": [
  397. "Bugly",
  398. "quick_cn_android"
  399. ],
  400. "keystoreName": "wenting.keystore",
  401. "keystorePass": "n9P5j2b7blMm",
  402. "keyaliasName": "game",
  403. "keyaliasPass": "KlYX666Ro"
  404. },
  405. {
  406. "channelName": "游逸",
  407. "appName": "心力物语",
  408. "distributeName": "測試服(英文版)",
  409. "channelUniqueId": "12002020",
  410. "bundleId": "com.xjro.yy",
  411. "gameVersionCode": {
  412. "major": 1,
  413. "minor": 0,
  414. "release": 0,
  415. "patch": 6
  416. },
  417. "resVersionCode": {
  418. "major": 0,
  419. "minor": 1,
  420. "release": 0,
  421. "patch": 0
  422. },
  423. "iconRelativePath": "XinLiWuYu",
  424. "defineSymbols": [
  425. "USE_LUA",
  426. "VUPLEX_CCU",
  427. "FPS_DISABLE",
  428. "GAME_DEBUG"
  429. ],
  430. "logo1RelativePath": "xlwy.png",
  431. "loginRelativePath": "Default",
  432. "gameAssetsPath": "Default",
  433. "specialFuncShield": false,
  434. "splashScreenRelativeFiles": [],
  435. "obscureKey": "",
  436. "obscureOffsetMin": 0,
  437. "obscureOffsetValues": [],
  438. "sdkVerifyUrl": "http://43.226.57.217:81//",
  439. "serverListUrl": "http://43.226.57.217:81//serverlist",
  440. "notifyUrl": "http://cxzcdn.hkhappygame.com/res/TestServerNotice/",
  441. "specialInfoUrl": "http://43.226.57.217:81//channel",
  442. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  443. "leBian_MainChId": "69423",
  444. "leBian_ClientChId": "youyi_bt_jj",
  445. "leBian_SECID": "dmcve6kq.c",
  446. "plugins": [
  447. "common",
  448. "Bugly",
  449. "FairGuard",
  450. "Lebian",
  451. "YOUYI_1.6.9"
  452. ],
  453. "sdkBridges": [
  454. "Bugly",
  455. "YOUYI_1.6.9"
  456. ],
  457. "keystoreName": "wenting.keystore",
  458. "keystorePass": "n9P5j2b7blMm",
  459. "keyaliasName": "game",
  460. "keyaliasPass": "KlYX666Ro"
  461. },
  462. {
  463. "channelName": "游逸",
  464. "appName": "Rookie Odyssey",
  465. "distributeName": "正式服(英文版)",
  466. "channelUniqueId": "12002021",
  467. "bundleId": "com.Runjin.Wonderland.gp",
  468. "gameVersionCode": {
  469. "major": 1,
  470. "minor": 0,
  471. "release": 0,
  472. "patch": 6
  473. },
  474. "resVersionCode": {
  475. "major": 0,
  476. "minor": 1,
  477. "release": 0,
  478. "patch": 0
  479. },
  480. "iconRelativePath": "XinLiWuYu",
  481. "defineSymbols": [
  482. "USE_LUA",
  483. "VUPLEX_CCU",
  484. "FPS_DISABLE"
  485. ],
  486. "logo1RelativePath": "xlwy.png",
  487. "loginRelativePath": "Default",
  488. "gameAssetsPath": "Default",
  489. "specialFuncShield": false,
  490. "splashScreenRelativeFiles": [],
  491. "obscureKey": "",
  492. "obscureOffsetMin": 0,
  493. "obscureOffsetValues": [],
  494. "sdkVerifyUrl": "http://165.154.202.27:81//",
  495. "serverListUrl": "http://165.154.202.27:81//serverlist",
  496. "notifyUrl": "http://165.154.202.27:88/res/NoticeNew/",
  497. "specialInfoUrl": "http://165.154.202.27:81//channel",
  498. "customerServiceInfoUrl": "http://165.154.202.27:81//vipService",
  499. "leBian_MainChId": "69423",
  500. "leBian_ClientChId": "youyi_bt_jj",
  501. "leBian_SECID": "dmcve6kq.c",
  502. "plugins": [
  503. "common",
  504. "YOUYI_1.6.9"
  505. ],
  506. "sdkBridges": [
  507. "YOUYI_1.6.9"
  508. ],
  509. "keystoreName": "wenting.keystore",
  510. "keystorePass": "n9P5j2b7blMm",
  511. "keyaliasName": "game",
  512. "keyaliasPass": "KlYX666Ro"
  513. },
  514. {
  515. "channelName": "游逸",
  516. "appName": "Рагнарёк Онлайн",
  517. "distributeName": "測試服(俄语版)",
  518. "channelUniqueId": "12002022",
  519. "bundleId": "com.xjro.rutest",
  520. "gameVersionCode": {
  521. "major": 1,
  522. "minor": 0,
  523. "release": 0,
  524. "patch": 6
  525. },
  526. "resVersionCode": {
  527. "major": 0,
  528. "minor": 1,
  529. "release": 0,
  530. "patch": 0
  531. },
  532. "iconRelativePath": "XinLiWuYu",
  533. "defineSymbols": [
  534. "USE_LUA",
  535. "VUPLEX_CCU",
  536. "FPS_DISABLE",
  537. "GAME_DEBUG"
  538. ],
  539. "logo1RelativePath": "xlwy.png",
  540. "loginRelativePath": "Default",
  541. "gameAssetsPath": "Default",
  542. "specialFuncShield": false,
  543. "splashScreenRelativeFiles": [],
  544. "obscureKey": "",
  545. "obscureOffsetMin": 0,
  546. "obscureOffsetValues": [],
  547. "sdkVerifyUrl": "http://43.226.57.217:81//",
  548. "serverListUrl": "http://43.226.57.217:81//serverlist",
  549. "notifyUrl": "http://43.226.57.217:88/res/NoticeNew/",
  550. "specialInfoUrl": "http://43.226.57.217:81//channel",
  551. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  552. "leBian_MainChId": "69423",
  553. "leBian_ClientChId": "youyi_bt_jj",
  554. "leBian_SECID": "dmcve6kq.c",
  555. "plugins": [
  556. "common",
  557. "YOUYI_1.6.9"
  558. ],
  559. "sdkBridges": [
  560. "TZ_android"
  561. ],
  562. "keystoreName": "wenting.keystore",
  563. "keystorePass": "n9P5j2b7blMm",
  564. "keyaliasName": "game",
  565. "keyaliasPass": "KlYX666Ro"
  566. },
  567. {
  568. "channelName": "游逸",
  569. "appName": "Рагнарёк Онлайн",
  570. "distributeName": "正式服(俄语版)",
  571. "channelUniqueId": "12002023",
  572. "bundleId": "com.xjroapp.ru",
  573. "gameVersionCode": {
  574. "major": 1,
  575. "minor": 0,
  576. "release": 0,
  577. "patch": 0
  578. },
  579. "resVersionCode": {
  580. "major": 0,
  581. "minor": 1,
  582. "release": 0,
  583. "patch": 0
  584. },
  585. "iconRelativePath": "XinLiWuYu",
  586. "defineSymbols": [
  587. "USE_LUA",
  588. "VUPLEX_CCU",
  589. "FPS_DISABLE"
  590. ],
  591. "logo1RelativePath": "xlwy.png",
  592. "loginRelativePath": "Default",
  593. "gameAssetsPath": "Default",
  594. "specialFuncShield": false,
  595. "splashScreenRelativeFiles": [],
  596. "obscureKey": "",
  597. "obscureOffsetMin": 0,
  598. "obscureOffsetValues": [],
  599. "sdkVerifyUrl": "http://165.154.215.99:81//",
  600. "serverListUrl": "http://165.154.215.99:81//serverlist",
  601. "notifyUrl": "http://165.154.215.99:88/res/NoticeNew/",
  602. "specialInfoUrl": "http://165.154.215.99:81//channel",
  603. "customerServiceInfoUrl": "http://165.154.215.99:81//vipService",
  604. "leBian_MainChId": "69423",
  605. "leBian_ClientChId": "youyi_bt_jj",
  606. "leBian_SECID": "dmcve6kq.c",
  607. "plugins": [
  608. "common",
  609. "YOUYI_1.6.9"
  610. ],
  611. "sdkBridges": [
  612. "TZ_android"
  613. ],
  614. "keystoreName": "wenting.keystore",
  615. "keystorePass": "n9P5j2b7blMm",
  616. "keyaliasName": "game",
  617. "keyaliasPass": "KlYX666Ro"
  618. },
  619. {
  620. "channelName": "游逸",
  621. "appName": "Rookie's Odyssey",
  622. "distributeName": "正式服(英文版)(+混淆)",
  623. "channelUniqueId": "12002024",
  624. "bundleId": "com.RookieOdyssey.gp",
  625. "gameVersionCode": {
  626. "major": 1,
  627. "minor": 0,
  628. "release": 0,
  629. "patch": 6
  630. },
  631. "resVersionCode": {
  632. "major": 0,
  633. "minor": 1,
  634. "release": 0,
  635. "patch": 0
  636. },
  637. "iconRelativePath": "XinLiWuYu",
  638. "defineSymbols": [
  639. "USE_LUA",
  640. "VUPLEX_CCU",
  641. "FPS_DISABLE"
  642. ],
  643. "logo1RelativePath": "xlwy.png",
  644. "loginRelativePath": "Default",
  645. "gameAssetsPath": "Default",
  646. "specialFuncShield": false,
  647. "splashScreenRelativeFiles": [],
  648. "obscureKey": "1ada09c25fda1fa9bcafe3c",
  649. "obscureOffsetMin": 0,
  650. "obscureOffsetValues": [
  651. 4,
  652. 16,
  653. 8
  654. ],
  655. "sdkVerifyUrl": "http://165.154.202.27:81//",
  656. "serverListUrl": "http://165.154.202.27:81//serverlist",
  657. "notifyUrl": "http://165.154.202.27:88/res/NoticeNew/",
  658. "specialInfoUrl": "http://165.154.202.27:81//channel",
  659. "customerServiceInfoUrl": "http://165.154.202.27:81//vipService",
  660. "leBian_MainChId": "69423",
  661. "leBian_ClientChId": "youyi_bt_jj",
  662. "leBian_SECID": "dmcve6kq.c",
  663. "plugins": [
  664. "common",
  665. "YOUYI_1.6.9"
  666. ],
  667. "sdkBridges": [
  668. "Android_en_hx"
  669. ],
  670. "keystoreName": "wenting.keystore",
  671. "keystorePass": "n9P5j2b7blMm",
  672. "keyaliasName": "game",
  673. "keyaliasPass": "KlYX666Ro"
  674. },
  675. {
  676. "channelName": "勉游",
  677. "appName": "东南亚测试服",
  678. "distributeName": "測試服(东南亚)",
  679. "channelUniqueId": "12002025",
  680. "bundleId": "com.xjro.rutest",
  681. "gameVersionCode": {
  682. "major": 1,
  683. "minor": 0,
  684. "release": 0,
  685. "patch": 6
  686. },
  687. "resVersionCode": {
  688. "major": 0,
  689. "minor": 1,
  690. "release": 0,
  691. "patch": 0
  692. },
  693. "iconRelativePath": "XinLiWuYu",
  694. "defineSymbols": [
  695. "USE_LUA",
  696. "VUPLEX_CCU",
  697. "FPS_DISABLE",
  698. "GAME_DEBUG"
  699. ],
  700. "logo1RelativePath": "xlwy.png",
  701. "loginRelativePath": "Default",
  702. "gameAssetsPath": "Default",
  703. "specialFuncShield": false,
  704. "splashScreenRelativeFiles": [],
  705. "obscureKey": "",
  706. "obscureOffsetMin": 0,
  707. "obscureOffsetValues": [],
  708. "sdkVerifyUrl": "http://43.226.57.217:81//",
  709. "serverListUrl": "http://43.226.57.217:81//serverlist",
  710. "notifyUrl": "http://43.226.57.217:88/res/NoticeNew/",
  711. "specialInfoUrl": "http://43.226.57.217:81//channel",
  712. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  713. "leBian_MainChId": "69423",
  714. "leBian_ClientChId": "youyi_bt_jj",
  715. "leBian_SECID": "dmcve6kq.c",
  716. "plugins": [
  717. "common",
  718. "YOUYI_1.6.9"
  719. ],
  720. "sdkBridges": [
  721. "TZ_android"
  722. ],
  723. "keystoreName": "wenting.keystore",
  724. "keystorePass": "n9P5j2b7blMm",
  725. "keyaliasName": "game",
  726. "keyaliasPass": "KlYX666Ro"
  727. },
  728. {
  729. "channelName": "勉游",
  730. "appName": "东南亚正式服",
  731. "distributeName": "正式服(东南亚)",
  732. "channelUniqueId": "12002026",
  733. "bundleId": "com.xjro.rutest",
  734. "gameVersionCode": {
  735. "major": 1,
  736. "minor": 0,
  737. "release": 0,
  738. "patch": 6
  739. },
  740. "resVersionCode": {
  741. "major": 0,
  742. "minor": 1,
  743. "release": 0,
  744. "patch": 0
  745. },
  746. "iconRelativePath": "XinLiWuYu",
  747. "defineSymbols": [
  748. "USE_LUA",
  749. "VUPLEX_CCU",
  750. "FPS_DISABLE"
  751. ],
  752. "logo1RelativePath": "xlwy.png",
  753. "loginRelativePath": "Default",
  754. "gameAssetsPath": "Default",
  755. "specialFuncShield": false,
  756. "splashScreenRelativeFiles": [],
  757. "obscureKey": "jj530ahsdpoi123bdco3kl0lgmvx",
  758. "obscureOffsetMin": 0,
  759. "obscureOffsetValues": [
  760. 7,
  761. 9,
  762. 5
  763. ],
  764. "sdkVerifyUrl": "http://43.156.13.116:81//",
  765. "serverListUrl": "http://43.156.13.116:81//serverlist",
  766. "notifyUrl": "http://43.156.13.116:88/res/NoticeNew/",
  767. "specialInfoUrl": "http://43.156.13.116:81//channel",
  768. "customerServiceInfoUrl": "http://43.156.13.116:81//vipService",
  769. "leBian_MainChId": "69423",
  770. "leBian_ClientChId": "youyi_bt_jj",
  771. "leBian_SECID": "dmcve6kq.c",
  772. "plugins": [
  773. "common",
  774. "YOUYI_1.6.9"
  775. ],
  776. "sdkBridges": [
  777. "MianYou_android"
  778. ],
  779. "keystoreName": "wenting.keystore",
  780. "keystorePass": "n9P5j2b7blMm",
  781. "keyaliasName": "game",
  782. "keyaliasPass": "KlYX666Ro"
  783. },
  784. {
  785. "channelName": "无",
  786. "appName": "SDK_NULL",
  787. "distributeName": "NULL_SDK",
  788. "channelUniqueId": "12002027",
  789. "bundleId": "com.xjro.null",
  790. "gameVersionCode": {
  791. "major": 1,
  792. "minor": 0,
  793. "release": 0,
  794. "patch": 6
  795. },
  796. "resVersionCode": {
  797. "major": 0,
  798. "minor": 1,
  799. "release": 0,
  800. "patch": 0
  801. },
  802. "iconRelativePath": "XinLiWuYu",
  803. "defineSymbols": [
  804. "USE_LUA",
  805. "VUPLEX_CCU",
  806. "NULLSDK",
  807. "FPS_DISABLE"
  808. ],
  809. "logo1RelativePath": "xlwy.png",
  810. "loginRelativePath": "Default",
  811. "gameAssetsPath": "Default",
  812. "specialFuncShield": false,
  813. "splashScreenRelativeFiles": [],
  814. "obscureKey": "",
  815. "obscureOffsetMin": 0,
  816. "obscureOffsetValues": [],
  817. "sdkVerifyUrl": "http://43.226.57.217:81//",
  818. "serverListUrl": "http://43.226.57.217:81//serverlist",
  819. "notifyUrl": "http://43.226.57.217:88/res/NoticeNew/",
  820. "specialInfoUrl": "http://43.226.57.217:81//channel",
  821. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  822. "leBian_MainChId": "69423",
  823. "leBian_ClientChId": "youyi_bt_jj",
  824. "leBian_SECID": "dmcve6kq.c",
  825. "plugins": [
  826. "common"
  827. ],
  828. "sdkBridges": [],
  829. "keystoreName": "wenting.keystore",
  830. "keystorePass": "n9P5j2b7blMm",
  831. "keyaliasName": "game",
  832. "keyaliasPass": "KlYX666Ro"
  833. },
  834. {
  835. "channelName": "勉游-炫游",
  836. "appName": "东南亚测试服",
  837. "distributeName": "測試服(东南亚)",
  838. "channelUniqueId": "12002028",
  839. "bundleId": "com.xjro.rutest",
  840. "gameVersionCode": {
  841. "major": 1,
  842. "minor": 0,
  843. "release": 0,
  844. "patch": 6
  845. },
  846. "resVersionCode": {
  847. "major": 0,
  848. "minor": 1,
  849. "release": 0,
  850. "patch": 0
  851. },
  852. "iconRelativePath": "XinLiWuYu",
  853. "defineSymbols": [
  854. "USE_LUA",
  855. "VUPLEX_CCU",
  856. "FPS_DISABLE",
  857. "GAME_DEBUG"
  858. ],
  859. "logo1RelativePath": "xlwy.png",
  860. "loginRelativePath": "Default",
  861. "gameAssetsPath": "Default",
  862. "specialFuncShield": false,
  863. "splashScreenRelativeFiles": [],
  864. "obscureKey": "",
  865. "obscureOffsetMin": 0,
  866. "obscureOffsetValues": [],
  867. "sdkVerifyUrl": "http://43.226.57.217:81//",
  868. "serverListUrl": "http://43.226.57.217:81//serverlist",
  869. "notifyUrl": "http://43.226.57.217:88/res/NoticeNew/",
  870. "specialInfoUrl": "http://43.226.57.217:81//channel",
  871. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  872. "leBian_MainChId": "69423",
  873. "leBian_ClientChId": "youyi_bt_jj",
  874. "leBian_SECID": "dmcve6kq.c",
  875. "plugins": [
  876. "common",
  877. "YOUYI_1.6.9"
  878. ],
  879. "sdkBridges": [
  880. "dny_XuanYou_android"
  881. ],
  882. "keystoreName": "wenting.keystore",
  883. "keystorePass": "n9P5j2b7blMm",
  884. "keyaliasName": "game",
  885. "keyaliasPass": "KlYX666Ro"
  886. },
  887. {
  888. "channelName": "勉游-炫游",
  889. "appName": "东南亚正式服",
  890. "distributeName": "正式服(东南亚)",
  891. "channelUniqueId": "12002029",
  892. "bundleId": "com.xjro.rutest",
  893. "gameVersionCode": {
  894. "major": 1,
  895. "minor": 0,
  896. "release": 0,
  897. "patch": 6
  898. },
  899. "resVersionCode": {
  900. "major": 0,
  901. "minor": 1,
  902. "release": 0,
  903. "patch": 0
  904. },
  905. "iconRelativePath": "XinLiWuYu",
  906. "defineSymbols": [
  907. "USE_LUA",
  908. "VUPLEX_CCU",
  909. "FPS_DISABLE"
  910. ],
  911. "logo1RelativePath": "xlwy.png",
  912. "loginRelativePath": "Default",
  913. "gameAssetsPath": "Default",
  914. "specialFuncShield": false,
  915. "splashScreenRelativeFiles": [],
  916. "obscureKey": "",
  917. "obscureOffsetMin": 0,
  918. "obscureOffsetValues": [],
  919. "sdkVerifyUrl": "http://43.156.13.116:81//",
  920. "serverListUrl": "http://43.156.13.116:81//serverlist",
  921. "notifyUrl": "http://43.156.13.116:88/res/NoticeNew/",
  922. "specialInfoUrl": "http://43.156.13.116:81//channel",
  923. "customerServiceInfoUrl": "http://43.156.13.116:81//vipService",
  924. "leBian_MainChId": "69423",
  925. "leBian_ClientChId": "youyi_bt_jj",
  926. "leBian_SECID": "dmcve6kq.c",
  927. "plugins": [
  928. "common",
  929. "YOUYI_1.6.9"
  930. ],
  931. "sdkBridges": [
  932. "dny_XuanYou_android"
  933. ],
  934. "keystoreName": "wenting.keystore",
  935. "keystorePass": "n9P5j2b7blMm",
  936. "keyaliasName": "game",
  937. "keyaliasPass": "KlYX666Ro"
  938. },
  939. {
  940. "channelName": "游逸",
  941. "appName": "初心者:集结",
  942. "distributeName": "游逸BT资源包(更新使用)(第十大区)",
  943. "channelUniqueId": "12003001",
  944. "bundleId": "com.xjro.yy",
  945. "gameVersionCode": {
  946. "major": 0,
  947. "minor": 1,
  948. "release": 0,
  949. "patch": 0
  950. },
  951. "resVersionCode": {
  952. "major": 0,
  953. "minor": 1,
  954. "release": 0,
  955. "patch": 0
  956. },
  957. "iconRelativePath": "ChuXinZheJiJie",
  958. "defineSymbols": [
  959. "USE_LUA",
  960. "VUPLEX_CCU",
  961. "BUGLY",
  962. "FPS_DISABLE"
  963. ],
  964. "logo1RelativePath": "cxzdmx.png",
  965. "loginRelativePath": "ChuXinZheChuanShuo",
  966. "gameAssetsPath": "Default",
  967. "specialFuncShield": false,
  968. "splashScreenRelativeFiles": [],
  969. "obscureKey": "",
  970. "obscureOffsetMin": 0,
  971. "obscureOffsetValues": [],
  972. "sdkVerifyUrl": "http://165.154.29.92//",
  973. "serverListUrl": "http://165.154.29.92:81//serverlist.php",
  974. "notifyUrl": "http://165.154.29.92:81//notice.php",
  975. "specialInfoUrl": "http://165.154.29.92:81//channel.php",
  976. "customerServiceInfoUrl": "http://165.154.29.92:81//vipService",
  977. "leBian_MainChId": "69510",
  978. "leBian_ClientChId": "PATCH_V3",
  979. "leBian_SECID": "jbr2lfjj.c",
  980. "plugins": [
  981. "common",
  982. "Bugly",
  983. "FairGuard",
  984. "Lebian",
  985. "YOUYI_1.6.9"
  986. ],
  987. "sdkBridges": [
  988. "Bugly",
  989. "YOUYI_1.6.9"
  990. ],
  991. "keystoreName": "wenting.keystore",
  992. "keystorePass": "n9P5j2b7blMm",
  993. "keyaliasName": "game",
  994. "keyaliasPass": "KlYX666Ro"
  995. },
  996. {
  997. "channelName": "游逸",
  998. "appName": "初心者:集结",
  999. "distributeName": "游逸BT正式母包(第十大区)",
  1000. "channelUniqueId": "12003002",
  1001. "bundleId": "com.xjro.yy",
  1002. "gameVersionCode": {
  1003. "major": 0,
  1004. "minor": 1,
  1005. "release": 0,
  1006. "patch": 0
  1007. },
  1008. "resVersionCode": {
  1009. "major": 0,
  1010. "minor": 1,
  1011. "release": 0,
  1012. "patch": 0
  1013. },
  1014. "iconRelativePath": "ChuXinZheJiJie",
  1015. "defineSymbols": [
  1016. "USE_LUA",
  1017. "VUPLEX_CCU",
  1018. "BUGLY",
  1019. "FPS_DISABLE"
  1020. ],
  1021. "logo1RelativePath": "ntquick.png",
  1022. "loginRelativePath": "Default",
  1023. "gameAssetsPath": "Default",
  1024. "specialFuncShield": false,
  1025. "splashScreenRelativeFiles": [
  1026. "wenting_splash.png"
  1027. ],
  1028. "obscureKey": "",
  1029. "obscureOffsetMin": 0,
  1030. "obscureOffsetValues": [],
  1031. "sdkVerifyUrl": "http://43.226.57.217:81//",
  1032. "serverListUrl": "http://43.226.57.217:81//serverlist",
  1033. "notifyUrl": "http://43.226.57.217:81//notice",
  1034. "specialInfoUrl": "http://43.226.57.217:81//channel",
  1035. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  1036. "leBian_MainChId": "69510",
  1037. "leBian_ClientChId": "youyi_cxzjj_bt",
  1038. "leBian_SECID": "jbr2lfjj.c",
  1039. "plugins": [
  1040. "common",
  1041. "Bugly",
  1042. "FairGuard"
  1043. ],
  1044. "sdkBridges": [
  1045. "Bugly"
  1046. ],
  1047. "keystoreName": "wenting.keystore",
  1048. "keystorePass": "n9P5j2b7blMm",
  1049. "keyaliasName": "game",
  1050. "keyaliasPass": "KlYX666Ro"
  1051. },
  1052. {
  1053. "channelName": "小龙",
  1054. "appName": "萌新冒險家",
  1055. "distributeName": "正式服(新港澳台)",
  1056. "channelUniqueId": "12003020",
  1057. "bundleId": "com.mxmxjgame.gp",
  1058. "gameVersionCode": {
  1059. "major": 1,
  1060. "minor": 0,
  1061. "release": 0,
  1062. "patch": 6
  1063. },
  1064. "resVersionCode": {
  1065. "major": 0,
  1066. "minor": 1,
  1067. "release": 0,
  1068. "patch": 0
  1069. },
  1070. "iconRelativePath": "XinLiWuYu",
  1071. "defineSymbols": [
  1072. "USE_LUA",
  1073. "VUPLEX_CCU",
  1074. "FPS_DISABLE"
  1075. ],
  1076. "logo1RelativePath": "Tw-new.png",
  1077. "loginRelativePath": "港澳台_new",
  1078. "gameAssetsPath": "Default",
  1079. "specialFuncShield": false,
  1080. "splashScreenRelativeFiles": [],
  1081. "obscureKey": "b497cf7b1214c130e0140910a7f8c6bf,536607",
  1082. "obscureOffsetMin": 0,
  1083. "obscureOffsetValues": [
  1084. 6,
  1085. 12,
  1086. 18
  1087. ],
  1088. "sdkVerifyUrl": "http://128.14.226.105:81//",
  1089. "serverListUrl": "http://128.14.226.105:81/serverlist",
  1090. "notifyUrl": "http://128.14.226.105:88/res/NoticeNew/",
  1091. "specialInfoUrl": "http://128.14.226.105:81//channel",
  1092. "customerServiceInfoUrl": "http://165.154.202.27:81//vipService",
  1093. "leBian_MainChId": "69423",
  1094. "leBian_ClientChId": "youyi_bt_jj",
  1095. "leBian_SECID": "dmcve6kq.c",
  1096. "plugins": [
  1097. "common",
  1098. "YOUYI_1.6.9"
  1099. ],
  1100. "sdkBridges": [
  1101. "Quick_andriod_hy_en"
  1102. ],
  1103. "keystoreName": "wenting.keystore",
  1104. "keystorePass": "n9P5j2b7blMm",
  1105. "keyaliasName": "game",
  1106. "keyaliasPass": "KlYX666Ro"
  1107. },
  1108. {
  1109. "channelName": "小龙",
  1110. "appName": "萌新冒險家",
  1111. "distributeName": "测试服(新港澳台)",
  1112. "channelUniqueId": "12003021",
  1113. "bundleId": "com.mxmxjgame.gp",
  1114. "gameVersionCode": {
  1115. "major": 1,
  1116. "minor": 0,
  1117. "release": 0,
  1118. "patch": 6
  1119. },
  1120. "resVersionCode": {
  1121. "major": 0,
  1122. "minor": 1,
  1123. "release": 0,
  1124. "patch": 0
  1125. },
  1126. "iconRelativePath": "XinLiWuYu",
  1127. "defineSymbols": [
  1128. "USE_LUA",
  1129. "VUPLEX_CCU",
  1130. "FPS_DISABLE"
  1131. ],
  1132. "logo1RelativePath": "Tw-new.png",
  1133. "loginRelativePath": "港澳台_new",
  1134. "gameAssetsPath": "Default",
  1135. "specialFuncShield": false,
  1136. "splashScreenRelativeFiles": [],
  1137. "obscureKey": "",
  1138. "obscureOffsetMin": 0,
  1139. "obscureOffsetValues": [],
  1140. "sdkVerifyUrl": "http://43.226.57.217:81//",
  1141. "serverListUrl": "http://43.226.57.217:81/serverlist",
  1142. "notifyUrl": "http://43.226.57.217:88/res/NoticeNew/",
  1143. "specialInfoUrl": "http://43.226.57.217:81//channel",
  1144. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  1145. "leBian_MainChId": "69423",
  1146. "leBian_ClientChId": "youyi_bt_jj",
  1147. "leBian_SECID": "dmcve6kq.c",
  1148. "plugins": [
  1149. "common",
  1150. "YOUYI_1.6.9"
  1151. ],
  1152. "sdkBridges": [
  1153. "Quick_andriod_hy_en"
  1154. ],
  1155. "keystoreName": "wenting.keystore",
  1156. "keystorePass": "n9P5j2b7blMm",
  1157. "keyaliasName": "game",
  1158. "keyaliasPass": "KlYX666Ro"
  1159. }
  1160. ],
  1161. "weiDuanAndroids": [
  1162. {
  1163. "channelName": "文庭",
  1164. "appName": "仙境归来",
  1165. "distributeName": "无SDK版本",
  1166. "channelUniqueId": "10000000",
  1167. "bundleId": "com.wt.no.sdk.test",
  1168. "gameVersionCode": {
  1169. "major": 0,
  1170. "minor": 0,
  1171. "release": 0,
  1172. "patch": 0
  1173. },
  1174. "resVersionCode": {
  1175. "major": 0,
  1176. "minor": 0,
  1177. "release": 0,
  1178. "patch": 0
  1179. },
  1180. "iconRelativePath": "Default",
  1181. "otherBuildProject": "Weiduan",
  1182. "leBian_MainChId": "68701",
  1183. "leBian_ClientChId": "wenting_test",
  1184. "leBian_SECID": "aczir2b2.c",
  1185. "leBian_LBCloudID": "68701",
  1186. "keystoreName": "wenting.keystore",
  1187. "keystorePass": "n9P5j2b7blMm",
  1188. "keyaliasName": "game",
  1189. "keyaliasPass": "KlYX666Ro"
  1190. }
  1191. ],
  1192. "iOSs": [
  1193. {
  1194. "channelName": "游逸",
  1195. "appName": "初心者大冒險",
  1196. "distributeName": "正式服",
  1197. "channelUniqueId": "22002002",
  1198. "bundleId": "com.ycgame.cxz.ios",
  1199. "gameVersionCode": {
  1200. "major": 0,
  1201. "minor": 1,
  1202. "release": 0,
  1203. "patch": 2
  1204. },
  1205. "resVersionCode": {
  1206. "major": 0,
  1207. "minor": 1,
  1208. "release": 0,
  1209. "patch": 0
  1210. },
  1211. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1212. "defineSymbols": [
  1213. "USE_LUA",
  1214. "VUPLEX_CCU",
  1215. "BUGLY",
  1216. "FPS_DISABLE"
  1217. ],
  1218. "logo1RelativePath": "ntquick.png",
  1219. "loginRelativePath": "Default",
  1220. "gameAssetsPath": "Default",
  1221. "specialFuncShield": false,
  1222. "splashScreenRelativeFiles": [],
  1223. "obscureKey": "jb94nmygdmhdlotr8df",
  1224. "obscureOffsetMin": 0,
  1225. "obscureOffsetValues": [
  1226. 8,
  1227. 6,
  1228. 9
  1229. ],
  1230. "sdkVerifyUrl": "http://165.154.29.92:81//",
  1231. "serverListUrl": "http://165.154.29.92:81//serverlist2",
  1232. "notifyUrl": "http://cxzcdn.hkhappygame.com/res/NoticeNew/",
  1233. "specialInfoUrl": "http://165.154.29.92:81//channel",
  1234. "customerServiceInfoUrl": "http://165.154.29.92:81//vipService",
  1235. "leBian_MainChId": "69031",
  1236. "leBian_ClientChId": "cxzjj_bt",
  1237. "leBian_SECID": "tx75web0.c",
  1238. "plugins": [
  1239. "common",
  1240. "Bugly",
  1241. "FairGuard",
  1242. "WentingLicense",
  1243. "QkSdk"
  1244. ],
  1245. "sdkBridges": [
  1246. "Bugly",
  1247. "Quick_IOS"
  1248. ]
  1249. },
  1250. {
  1251. "channelName": "游逸",
  1252. "appName": "Rookie Rising",
  1253. "distributeName": "正式服(英文版)",
  1254. "channelUniqueId": "22002003",
  1255. "bundleId": "com.cxzusgame.ios",
  1256. "gameVersionCode": {
  1257. "major": 0,
  1258. "minor": 1,
  1259. "release": 0,
  1260. "patch": 0
  1261. },
  1262. "resVersionCode": {
  1263. "major": 0,
  1264. "minor": 1,
  1265. "release": 0,
  1266. "patch": 0
  1267. },
  1268. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1269. "defineSymbols": [
  1270. "USE_LUA",
  1271. "VUPLEX_CCU",
  1272. "FPS_DISABLE"
  1273. ],
  1274. "logo1RelativePath": "ntquick.png",
  1275. "loginRelativePath": "Default",
  1276. "gameAssetsPath": "Default",
  1277. "specialFuncShield": false,
  1278. "splashScreenRelativeFiles": [],
  1279. "obscureKey": "c685bfa79e3210cda0ae126c9fffabf5",
  1280. "obscureOffsetMin": 0,
  1281. "obscureOffsetValues": [
  1282. 8,
  1283. 13,
  1284. 17
  1285. ],
  1286. "sdkVerifyUrl": "http://165.154.202.27:81//",
  1287. "serverListUrl": "http://165.154.202.27:81//serverlist",
  1288. "notifyUrl": "http://165.154.202.27:88/res/NoticeNew/",
  1289. "specialInfoUrl": "http://165.154.202.27:81//channel",
  1290. "customerServiceInfoUrl": "http://165.154.202.27:81//vipService",
  1291. "leBian_MainChId": "69031",
  1292. "leBian_ClientChId": "cxzjj_bt",
  1293. "leBian_SECID": "tx75web0.c",
  1294. "plugins": [
  1295. "common",
  1296. "FairGuard",
  1297. "WentingLicense",
  1298. "QkSdk_en"
  1299. ],
  1300. "sdkBridges": [
  1301. "Quick_IOS"
  1302. ]
  1303. },
  1304. {
  1305. "channelName": "游逸",
  1306. "appName": "初心者大冒險",
  1307. "distributeName": "測試服",
  1308. "channelUniqueId": "22002004",
  1309. "bundleId": "com.ycgame.cxz.ios",
  1310. "gameVersionCode": {
  1311. "major": 0,
  1312. "minor": 1,
  1313. "release": 0,
  1314. "patch": 2
  1315. },
  1316. "resVersionCode": {
  1317. "major": 0,
  1318. "minor": 1,
  1319. "release": 0,
  1320. "patch": 0
  1321. },
  1322. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1323. "defineSymbols": [
  1324. "USE_LUA",
  1325. "VUPLEX_CCU",
  1326. "BUGLY",
  1327. "FPS_DISABLE",
  1328. "GAME_DEBUG"
  1329. ],
  1330. "logo1RelativePath": "ntquick.png",
  1331. "loginRelativePath": "Default",
  1332. "gameAssetsPath": "Default",
  1333. "specialFuncShield": false,
  1334. "splashScreenRelativeFiles": [],
  1335. "obscureKey": "",
  1336. "obscureOffsetMin": 0,
  1337. "obscureOffsetValues": [],
  1338. "sdkVerifyUrl": "http://43.226.57.217:81//",
  1339. "serverListUrl": "http://43.226.57.217:81//serverlist",
  1340. "notifyUrl": "http://cxzcdn.hkhappygame.com/res/TestServerNotice/",
  1341. "specialInfoUrl": "http://43.226.57.217:81//channel",
  1342. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
  1343. "leBian_MainChId": "69031",
  1344. "leBian_ClientChId": "cxzjj_bt",
  1345. "leBian_SECID": "tx75web0.c",
  1346. "plugins": [
  1347. "common",
  1348. "Bugly",
  1349. "FairGuard",
  1350. "WentingLicense",
  1351. "QkSdk"
  1352. ],
  1353. "sdkBridges": [
  1354. "Bugly",
  1355. "Quick_IOS"
  1356. ]
  1357. },
  1358. {
  1359. "channelName": "i7game",
  1360. "appName": "超冒险小镇物语2",
  1361. "distributeName": "正式服--0.1",
  1362. "channelUniqueId": "22002005",
  1363. "bundleId": "com.ycgame.cxz.ios",
  1364. "gameVersionCode": {
  1365. "major": 0,
  1366. "minor": 1,
  1367. "release": 0,
  1368. "patch": 3
  1369. },
  1370. "resVersionCode": {
  1371. "major": 0,
  1372. "minor": 1,
  1373. "release": 0,
  1374. "patch": 0
  1375. },
  1376. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1377. "defineSymbols": [
  1378. "USE_LUA",
  1379. "VUPLEX_CCU",
  1380. "FPS_DISABLE",
  1381. "CN_I7GAME_0_1"
  1382. ],
  1383. "logo1RelativePath": "ntquick.png",
  1384. "loginRelativePath": "i7Game",
  1385. "gameAssetsPath": "Default",
  1386. "specialFuncShield": false,
  1387. "splashScreenRelativeFiles": [],
  1388. "obscureKey": "",
  1389. "obscureOffsetMin": 0,
  1390. "obscureOffsetValues": [],
  1391. "sdkVerifyUrl": "http://103.239.245.64:81//",
  1392. "serverListUrl": "http://103.239.245.64:81//serverlist",
  1393. "notifyUrl": "http://weix.vvfyj.cn/res/NoticeNew/",
  1394. "specialInfoUrl": "http://weix.vvfyj.cn/res/Channel/agreement.json",
  1395. "customerServiceInfoUrl": "http://103.239.245.64:81//vipService",
  1396. "leBian_MainChId": "69031",
  1397. "leBian_ClientChId": "cxzjj_bt",
  1398. "leBian_SECID": "tx75web0.c",
  1399. "plugins": [
  1400. "common",
  1401. "FairGuard",
  1402. "WentingLicense",
  1403. "quick_cn_ios"
  1404. ],
  1405. "sdkBridges": [
  1406. "quick_cn_android"
  1407. ]
  1408. },
  1409. {
  1410. "channelName": "i7game",
  1411. "appName": "超冒险小镇物语2",
  1412. "distributeName": "正式服--专",
  1413. "channelUniqueId": "22002006",
  1414. "bundleId": "com.ycgame.cxz.ios",
  1415. "gameVersionCode": {
  1416. "major": 0,
  1417. "minor": 1,
  1418. "release": 0,
  1419. "patch": 2
  1420. },
  1421. "resVersionCode": {
  1422. "major": 0,
  1423. "minor": 1,
  1424. "release": 0,
  1425. "patch": 0
  1426. },
  1427. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1428. "defineSymbols": [
  1429. "USE_LUA",
  1430. "VUPLEX_CCU",
  1431. "FPS_DISABLE",
  1432. "CN_I7GAME_ZHUAN"
  1433. ],
  1434. "logo1RelativePath": "ntquick.png",
  1435. "loginRelativePath": "i7Game",
  1436. "gameAssetsPath": "Default",
  1437. "specialFuncShield": false,
  1438. "splashScreenRelativeFiles": [],
  1439. "obscureKey": "",
  1440. "obscureOffsetMin": 0,
  1441. "obscureOffsetValues": [],
  1442. "sdkVerifyUrl": "http://43.248.186.74:81//",
  1443. "serverListUrl": "http://43.248.186.74:81//serverlist",
  1444. "notifyUrl": "http://43.248.186.74:88/res/NoticeNew/",
  1445. "specialInfoUrl": "http://43.248.186.74:88/res/Channel/agreement.json",
  1446. "customerServiceInfoUrl": "http://43.248.186.74:81//vipService",
  1447. "leBian_MainChId": "69031",
  1448. "leBian_ClientChId": "cxzjj_bt",
  1449. "leBian_SECID": "tx75web0.c",
  1450. "plugins": [
  1451. "common",
  1452. "FairGuard",
  1453. "WentingLicense",
  1454. "quick_cn_ios"
  1455. ],
  1456. "sdkBridges": [
  1457. "quick_cn_android"
  1458. ]
  1459. },
  1460. {
  1461. "channelName": "i7game",
  1462. "appName": "超冒险小镇物语2",
  1463. "distributeName": "正式服--0.1(新)",
  1464. "channelUniqueId": "22002007",
  1465. "bundleId": "com.ycgame.cxz.ios",
  1466. "gameVersionCode": {
  1467. "major": 0,
  1468. "minor": 1,
  1469. "release": 0,
  1470. "patch": 3
  1471. },
  1472. "resVersionCode": {
  1473. "major": 0,
  1474. "minor": 1,
  1475. "release": 0,
  1476. "patch": 0
  1477. },
  1478. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1479. "defineSymbols": [
  1480. "USE_LUA",
  1481. "VUPLEX_CCU",
  1482. "FPS_DISABLE",
  1483. "GAME_DEBUG",
  1484. "GAME_ONE"
  1485. ],
  1486. "logo1RelativePath": "ntquick.png",
  1487. "loginRelativePath": "i7Game",
  1488. "gameAssetsPath": "Default",
  1489. "specialFuncShield": false,
  1490. "splashScreenRelativeFiles": [],
  1491. "obscureKey": "",
  1492. "obscureOffsetMin": 0,
  1493. "obscureOffsetValues": [],
  1494. "sdkVerifyUrl": "http://101.43.46.101:81//",
  1495. "serverListUrl": "http://101.43.46.101:81//serverlist",
  1496. "notifyUrl": "http://101.43.46.101:88//res/NoticeNew/",
  1497. "specialInfoUrl": "http://101.43.46.101:88//res/Channel/agreement.json",
  1498. "customerServiceInfoUrl": "http://101.43.46.101:81//vipService",
  1499. "leBian_MainChId": "69031",
  1500. "leBian_ClientChId": "cxzjj_bt",
  1501. "leBian_SECID": "tx75web0.c",
  1502. "plugins": [
  1503. "common",
  1504. "FairGuard",
  1505. "WentingLicense",
  1506. "quick_cn_ios"
  1507. ],
  1508. "sdkBridges": [
  1509. "quick_cn_android"
  1510. ]
  1511. },
  1512. {
  1513. "channelName": "俄语",
  1514. "appName": "Рыцарская легенда",
  1515. "distributeName": "正式服(俄语)",
  1516. "channelUniqueId": "22002010",
  1517. "bundleId": "com.qscq.joy",
  1518. "gameVersionCode": {
  1519. "major": 0,
  1520. "minor": 1,
  1521. "release": 0,
  1522. "patch": 0
  1523. },
  1524. "resVersionCode": {
  1525. "major": 0,
  1526. "minor": 1,
  1527. "release": 0,
  1528. "patch": 0
  1529. },
  1530. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1531. "defineSymbols": [
  1532. "USE_LUA",
  1533. "VUPLEX_CCU",
  1534. "FPS_DISABLE"
  1535. ],
  1536. "logo1RelativePath": "ntquick.png",
  1537. "loginRelativePath": "Default",
  1538. "gameAssetsPath": "Default",
  1539. "specialFuncShield": false,
  1540. "splashScreenRelativeFiles": [],
  1541. "obscureKey": "",
  1542. "obscureOffsetMin": 0,
  1543. "obscureOffsetValues": [],
  1544. "sdkVerifyUrl": "http://165.154.215.99:81//",
  1545. "serverListUrl": "http://165.154.215.99:81//serverlist",
  1546. "notifyUrl": "http://165.154.215.99:88/res/NoticeNew/",
  1547. "specialInfoUrl": "http://165.154.215.99:81//channel",
  1548. "customerServiceInfoUrl": "http://165.154.215.99:81//vipService",
  1549. "leBian_MainChId": "69031",
  1550. "leBian_ClientChId": "cxzjj_bt",
  1551. "leBian_SECID": "tx75web0.c",
  1552. "plugins": [
  1553. "common",
  1554. "QkSdk_en"
  1555. ],
  1556. "sdkBridges": [
  1557. "Q_IOS"
  1558. ]
  1559. },
  1560. {
  1561. "channelName": "勉游",
  1562. "appName": "aaa",
  1563. "distributeName": "正式服(东南亚)",
  1564. "channelUniqueId": "22002011",
  1565. "bundleId": "com.qscq.joy",
  1566. "gameVersionCode": {
  1567. "major": 0,
  1568. "minor": 1,
  1569. "release": 0,
  1570. "patch": 0
  1571. },
  1572. "resVersionCode": {
  1573. "major": 0,
  1574. "minor": 1,
  1575. "release": 0,
  1576. "patch": 0
  1577. },
  1578. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1579. "defineSymbols": [
  1580. "USE_LUA",
  1581. "VUPLEX_CCU",
  1582. "FPS_DISABLE"
  1583. ],
  1584. "logo1RelativePath": "ntquick.png",
  1585. "loginRelativePath": "Default",
  1586. "gameAssetsPath": "Default",
  1587. "specialFuncShield": false,
  1588. "splashScreenRelativeFiles": [],
  1589. "obscureKey": "c0f0a92eecc1ab6e757ec2b856b05799",
  1590. "obscureOffsetMin": 0,
  1591. "obscureOffsetValues": [
  1592. 6,
  1593. 10,
  1594. 8
  1595. ],
  1596. "sdkVerifyUrl": "http://43.156.13.116:81//",
  1597. "serverListUrl": "http://43.156.13.116:81//serverlist",
  1598. "notifyUrl": "http://43.156.13.116:88/res/NoticeNew/",
  1599. "specialInfoUrl": "http://43.156.13.116:81//channel",
  1600. "customerServiceInfoUrl": "http://43.156.13.116:81//vipService",
  1601. "leBian_MainChId": "69031",
  1602. "leBian_ClientChId": "cxzjj_bt",
  1603. "leBian_SECID": "tx75web0.c",
  1604. "plugins": [
  1605. "common",
  1606. "Xuanyou_SDK_IOS"
  1607. ],
  1608. "sdkBridges": [
  1609. "XuanYou_IOS"
  1610. ]
  1611. },
  1612. {
  1613. "channelName": "勉游-炫游",
  1614. "appName": "aaa",
  1615. "distributeName": "正式服(东南亚)",
  1616. "channelUniqueId": "22002012",
  1617. "bundleId": "com.qscq.joy",
  1618. "gameVersionCode": {
  1619. "major": 0,
  1620. "minor": 1,
  1621. "release": 0,
  1622. "patch": 0
  1623. },
  1624. "resVersionCode": {
  1625. "major": 0,
  1626. "minor": 1,
  1627. "release": 0,
  1628. "patch": 0
  1629. },
  1630. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1631. "defineSymbols": [
  1632. "USE_LUA",
  1633. "VUPLEX_CCU",
  1634. "FPS_DISABLE"
  1635. ],
  1636. "logo1RelativePath": "ntquick.png",
  1637. "loginRelativePath": "Default",
  1638. "gameAssetsPath": "Default",
  1639. "specialFuncShield": false,
  1640. "splashScreenRelativeFiles": [],
  1641. "obscureKey": "fa0574eb0381d1b043c62fbd46f10bcb",
  1642. "obscureOffsetMin": 0,
  1643. "obscureOffsetValues": [
  1644. 8,
  1645. 4,
  1646. 10
  1647. ],
  1648. "sdkVerifyUrl": "http://43.156.13.116:81//",
  1649. "serverListUrl": "http://43.156.13.116:81//serverlist",
  1650. "notifyUrl": "http://43.156.13.116:88/res/NoticeNew/",
  1651. "specialInfoUrl": "http://43.156.13.116:81//channel",
  1652. "customerServiceInfoUrl": "http://43.156.13.116:81//vipService",
  1653. "leBian_MainChId": "69031",
  1654. "leBian_ClientChId": "cxzjj_bt",
  1655. "leBian_SECID": "tx75web0.c",
  1656. "plugins": [
  1657. "common",
  1658. "Xuanyou_SDK_IOS"
  1659. ],
  1660. "sdkBridges": [
  1661. "XuanYou_IOS"
  1662. ]
  1663. },
  1664. {
  1665. "channelName": "小龙",
  1666. "appName": "萌新冒險家",
  1667. "distributeName": "正式服(新港澳台)",
  1668. "channelUniqueId": "22002013",
  1669. "bundleId": "com.Runjin.Wonderland",
  1670. "gameVersionCode": {
  1671. "major": 0,
  1672. "minor": 1,
  1673. "release": 0,
  1674. "patch": 0
  1675. },
  1676. "resVersionCode": {
  1677. "major": 0,
  1678. "minor": 1,
  1679. "release": 0,
  1680. "patch": 0
  1681. },
  1682. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1683. "defineSymbols": [
  1684. "USE_LUA",
  1685. "VUPLEX_CCU",
  1686. "FPS_DISABLE"
  1687. ],
  1688. "logo1RelativePath": "Tw-new.png",
  1689. "loginRelativePath": "港澳台_new",
  1690. "gameAssetsPath": "Default",
  1691. "specialFuncShield": false,
  1692. "splashScreenRelativeFiles": [],
  1693. "obscureKey": "acbd2331ffcd5987addc754a87f",
  1694. "obscureOffsetMin": 0,
  1695. "obscureOffsetValues": [
  1696. 8,
  1697. 4,
  1698. 10
  1699. ],
  1700. "sdkVerifyUrl": "http://128.14.226.105:81//",
  1701. "serverListUrl": "http://128.14.226.105:81//serverlist",
  1702. "notifyUrl": "http://128.14.226.105:88/res/NoticeNew/",
  1703. "specialInfoUrl": "http://128.14.226.105:81//channel",
  1704. "customerServiceInfoUrl": "http://128.14.226.105:81//vipService",
  1705. "leBian_MainChId": "69031",
  1706. "leBian_ClientChId": "cxzjj_bt",
  1707. "leBian_SECID": "tx75web0.c",
  1708. "plugins": [
  1709. "common",
  1710. "QkSdk_en_new"
  1711. ],
  1712. "sdkBridges": [
  1713. "Quick_IOS_New"
  1714. ]
  1715. }
  1716. ],
  1717. "pCs": [
  1718. {
  1719. "channelName": "文庭",
  1720. "appName": "仙境归来",
  1721. "distributeName": "无SDK版本",
  1722. "channelUniqueId": "1",
  1723. "bundleId": "com.wt.no.sdk.test",
  1724. "gameVersionCode": {
  1725. "major": 0,
  1726. "minor": 0,
  1727. "release": 0,
  1728. "patch": 0
  1729. },
  1730. "resVersionCode": {
  1731. "major": 0,
  1732. "minor": 0,
  1733. "release": 0,
  1734. "patch": 0
  1735. },
  1736. "iconRelativePath": "Default",
  1737. "defineSymbols": [
  1738. "USE_LUA",
  1739. "NULLSDK",
  1740. "OPENGM"
  1741. ],
  1742. "logo1RelativePath": "default.png",
  1743. "loginRelativePath": "Default",
  1744. "gameAssetsPath": "Default",
  1745. "specialFuncShield": false,
  1746. "splashScreenRelativeFiles": [
  1747. "wenting_splash.png"
  1748. ],
  1749. "obscureKey": "",
  1750. "obscureOffsetMin": 0,
  1751. "obscureOffsetValues": [],
  1752. "sdkVerifyUrl": "https://test-roserverlist-wt.wtgames.cn/",
  1753. "serverListUrl": "https://test-roserverlist-wt.wtgames.cn/serverlist",
  1754. "notifyUrl": "https://test-noticegmt-wt.wtgames.cn/v3/notice",
  1755. "specialInfoUrl": "https://test-noticegmt-wt.wtgames.cn/channel",
  1756. "customerServiceInfoUrl": "https://test-noticegmt-wt.wtgames.cn/vipService"
  1757. }
  1758. ],
  1759. "h5s": [
  1760. {
  1761. "channelName": "H5",
  1762. "appName": "仙境归来",
  1763. "distributeName": "测试服",
  1764. "channelUniqueId": "50000000",
  1765. "bundleId": "com.wt.no.sdk.test",
  1766. "gameVersionCode": {
  1767. "major": 0,
  1768. "minor": 0,
  1769. "release": 0,
  1770. "patch": 0
  1771. },
  1772. "resVersionCode": {
  1773. "major": 0,
  1774. "minor": 0,
  1775. "release": 0,
  1776. "patch": 0
  1777. },
  1778. "iconRelativePath": "ChuXinZheDaMaoxianNew_IOS",
  1779. "defineSymbols": [
  1780. "USE_LUA",
  1781. "VUPLEX_CCU",
  1782. "NULLSDK",
  1783. "GAME_DEBUG",
  1784. "FPS_DISABLE"
  1785. ],
  1786. "logo1RelativePath": "default.png",
  1787. "loginRelativePath": "Default",
  1788. "gameAssetsPath": "Default",
  1789. "specialFuncShield": false,
  1790. "splashScreenRelativeFiles": [
  1791. "i7game_splash.png"
  1792. ],
  1793. "obscureKey": "",
  1794. "obscureOffsetMin": 0,
  1795. "obscureOffsetValues": [],
  1796. "sdkVerifyUrl": "http://43.226.57.217:81//",
  1797. "serverListUrl": "http://43.226.57.217:81//serverlist",
  1798. "notifyUrl": "http://cxzcdn.hkhappygame.com/res/TestServerNotice/",
  1799. "specialInfoUrl": "http://43.226.57.217:81//channel",
  1800. "customerServiceInfoUrl": "http://43.226.57.217:81//vipService"
  1801. }
  1802. ]
  1803. }