Joshua Hale
Joshua Hale

Reputation: 13

Android Studio Error No signature of method:

Looking for help understanding and resolving this error

Build file 'C:\Users\joshh\OneDrive\Documents\CodeCanyon\codecanyon-9N9XgbkQ-coloring-book-with-admob\Android Source Code\Color Pro\build.gradle' line: 3

A problem occurred evaluating project ':Color Pro'.

No signature of method: build_4ks5xjd36ksu4ifppbleyvzzl.android() is applicable for argument types: (build_4ks5xjd36ksu4ifppbleyvzzl$_run_closure1) values: [build_4ks5xjd36ksu4ifppbleyvzzl$_run_closure1@6dc8a860]

Upvotes: 1

Views: 2868

Answers (1)

Milan Jurkulak
Milan Jurkulak

Reputation: 635

Bad closure. You are caling method that does not have right parameters or extension is missing. Possible scenario can be if you are calling function with wrong parameters or you forget to apply plugin with extension or you call is at bad place, when parameters or plugin are not yet prepared. Check line 3, in gradle file.

Upvotes: 3

Related Questions