Is there are any possibility to use the Android Studio "Spelling", "Typo" checker with Gradle? It's been a while, but I still cannot find any possible solution.
Asked
Active
Viewed 108 times
1 Answers
0
You should use Android lint for that, take a look at Typos
check here. You can run it this way:
lint --check Typos myproject
You can use it via Gradle wrapper:
gradlew lint
More information about lint could be found here.

Vadim Kotov
- 8,084
- 8
- 48
- 62