赞
踩
导出项目错误:
Error:mainTemplate.gradle file is using the old aaptOptions noCompress property definition which does not include types defined by unityStreamingAssets constant.
解决:
mainTemplate.gradle文件 中 aaptOptions{ //something...}
新加/修改为
- aaptOptions {
-
- noCompress= ['.ress', '.resource', '.obb' ]+ unityStreamingAssets.tokenize(', ') //之前不是这样的
- ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
- }
项目内其他地方可能也有aaptOptions 要改记得都改下
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。