-
[Error] mainTemplate.gradle file is using the old aaptOptions 처리게임 엔진/Unity 2021. 3. 30. 19:15
UnityException: Error mainTemplate.gradle file is using the old aaptOptions noCompress property definition which does not include types defined by unityStreamingAssets constant.
※ mainTemplate.gradle의 aaptOptions 항목 다음과 같이 업데이트
android { ... aaptOptions { noCompress = ['.ress', '.resource', '.obb'] + unityStreamingAssets.tokenize(', ') ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~" } ... }
AaptOptions 바뀐 점)
불필요한 데이터가 빌드에 포함되지 않도록 하기 위해 ignoreAssetsPattern 추가됨.