PackConfig.json 62 KB

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