Unity打Android包,报.gradle needs to be updated,old aaptOptions noCompress,需要更新unityStreamingAssets的错误

**

Unity打Android包,报*.gradle needs to be updated! old aaptOptionsnoCompress,关于unityStreamingAssets的错误mainTemplate.gradle needs to be updated!

**
we’ve detected that your custom
Assets/Plugins/Android 'mainTemplate.gradle file is using a deprecated way of controlling which tool shouldbe used to do the minification.To fix this, remove
“useProguard” entries yourself. We can also do this automatically, your current mainTemplate.gradle file will be backed up. Continue?
mainTemplate.gradle needs to be updated!
mainTemplate.gradle file is using the old aaptOptionsnoCompress property definitionError
mainTemplate.gradle file is using the old aaptOptionsnoCompress property definition which does not indludetypes defined by unityStreamingAssets constant.

提示mainTemplate.gradle需要更新。这里我们把Assets/Plugins/Android 'mainTemplate.gradle

    aaptOptions {
       	noCompress = ['.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**]
        ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
    }**SIGN**

修改为

    aaptOptions {
        noCompress = ['.ress', '.resource', '.obb'] + unityStreamingAssets.tokenize(', ')
        ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
    }**SIGN**

launcherTemplate.gradle如果也报错,可以同样将里面的

noCompress = ['.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**]

替换为

noCompress = ['.ress', '.resource', '.obb'] + unityStreamingAssets.tokenize(', ')

重新打包即可。

  • 5
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 7
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值