Configure gradle.properties android.enableAapt=false on travis yml file

♀尐吖头ヾ 提交于 2019-12-05 04:02:05

I think the problem is that you are disabling AAPT2 in global properties file ~/.gradle/gradle.properties instead of project properties file /yourproject/gradle.properties.

radzimir

It could be, that you have copied the name of the gradle.properties file from this official tweet:

https://twitter.com/androidstudio/status/875311569219006464

Unfortunettely the text gradle.propertіes was written with cyrilic 'i' :

echo 'gradle.propertіes' | hexdump -C

00000000 67 72 61 64 6c 65 2e 70 72 6f 70 65 72 74 d1 96 |gradle.propert..| 00000010 65 73 0a |es.|

0xd196 is in UTF8 'CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I'.

In this case the file will not be recognized and used.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!