При компиляции проекта выводит следующую ошибку
> Lint found errors in the project; aborting build.
Fix the issues identified by lint, or add the following to your build script to proceed with errors:
...
android {
lintOptions {
abortOnError false
}
}
Пробовал отключать Run lint code analysis во вкладке Android, но не помогло. На загуборном форуме вычитал, что можно посмотреть полный лог по пути file:///X:/com.companyname.game/build/outputs/lint-results-debug.. который лежит в папке GMTemp. Но я что то не нашел там ничего похожего.
Добавлено (28 Января 2018, 19:51)
---------------------------------------------
никто с подобным не сталкивался?
Добавлено (28 Января 2018, 20:24)
---------------------------------------------
кое-как нашел этот файл. пишет, что GradleCompatible: Incompatible Gradle Versions. для решения предлагает добавить в файл build.gradle
android {
lintOptions {
disable 'TypographyFractions','TypographyQuotes'
}
}
добавляю, при следующей компиляции этот файл обновляется и добавленное пропадает.
другой способ добавить в lint.xml
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<!-- Disable this given check in this project -->
<issue id="IconMissingDensityFolder" severity="ignore" />
<!-- Ignore the ObsoleteLayoutParam issue in the given files -->
<issue id="ObsoleteLayoutParam">
<ignore path="res/layout/activation.xml" />
<ignore path="res/layout-xlarge/activation.xml" />
</issue>
<!-- Ignore the UselessLeaf issue in the given file -->
<issue id="UselessLeaf">
<ignore path="res/layout/main.xml" />
</issue>
<!-- Change the severity of hardcoded strings to "error" -->
<issue id="HardcodedText" severity="error" />
</lint>
Но файл также обновляется. Как решить проблему?Добавлено (28 Января 2018, 21:22)
---------------------------------------------
все ясно короче, надо было build tools откатить до 25