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

后端 未结 6 1460
别那么骄傲
别那么骄傲 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:48

    Had a similar issue. I was trying to implement bindingAdapters to a TextView of a ViewHolder in my recyclerview

    I failed to implement a bindingAdapter for a TextView after adding the adding a unique app attribute

    app:tDate="@{transaction}

    in the xml layout file for my recylerView item.

    
    

    Solved it by well.. implementing it.

    @BindingAdapter("tDate")
    fun TextView.setValue(item: Transactions){
        text = item.date.toString()
    }
    

提交回复
热议问题