script.py 580 B

12345678910111213141516171819202122232425
  1. # coding:utf8
  2. __author__ = 'dong'
  3. import os
  4. import logging
  5. import xml.dom.minidom
  6. import re
  7. import shutil
  8. import glob
  9. from xml.etree.ElementTree import ElementTree, Element
  10. import distutils.dir_util
  11. import gw_file_system
  12. import gw_data_center
  13. from xml.etree import ElementTree as ET
  14. ANDROID_NS = 'http://schemas.android.com/apk/res/android'
  15. def script_init(workspace_sdk_dir, extract_dir, channel_sdk_info, new_game_channel_info, game_info):
  16. sdk_id = channel_sdk_info['id']
  17. gw_data_center.pack_small = False
  18. logging.info('script_init: ' + str(channel_sdk_info))