0

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.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
sttimchenko
  • 401
  • 3
  • 15

1 Answers1

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