ANTLR Tool version 4.7.1 used for code generation does not match the current runtime version 4.5.3

后端 未结 6 1455
别那么骄傲
别那么骄傲 2021-02-19 23:10

Im working on an Android App, currently using DSL and some libraries, suddenly the build gave me this error.

Task :app:kaptDebugKotlin FAILED ANTLR Tool

6条回答
  •  忘了有多久
    2021-02-19 23:47

    Inside the build.gradle(Module:app) copypaste this code

    configurations.all() { resolutionStrategy.force "org.antlr:antlr4-runtime:4.5.3" resolutionStrategy.force "org.antlr:antlr4-tool:4.5.3" }

提交回复
热议问题