Explorar el Código

添加研发sdk打包功能5

zengqb hace 5 años
padre
commit
8d9e01d565
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8 0
      package_utils_yfsdk.py

+ 8 - 0
package_utils_yfsdk.py

@@ -40,6 +40,14 @@ def pack(game, sdk, config):
     if ret:
         return ret
 
+        # 复制res资源
+    ret = copyRes(game, sdk, subChannel, config)
+    if ret:
+        return ret
+    # 复制app res资源
+    ret = copyAppRes(game, sdk, subChannel, config)
+    if ret:
+        return ret
     # 更改包名
     if 'packageName' in config and config['packageName'] != '':
         ret = changePackageName(game, sdk, subChannel, config)