Home > Blockchain >  No signature of method: build_79k99zzpu1czozbhubqf5bc4h.android() is applicable for argument types:
No signature of method: build_79k99zzpu1czozbhubqf5bc4h.android() is applicable for argument types:

Time:07-16

i'm trying to add databiding in my code but when i try to sync shows me an error:

No signature of method: build_79k99zzpu1czozbhubqf5bc4h.android() is applicable for argument types: (build_79k99zzpu1czozbhubqf5bc4h$_run_closure1) values: [build_79k99zzpu1czozbhubqf5bc4h$_run_closure1@493dc88e]

this is the code:

code image code image

CodePudding user response:

I solved by writing:

buildFeatures {
    dataBinding true
}

instead of:

dataBiding{
    enabled = true
}
  • Related