0

Trying to add buildSrc to manage dependencies getting the following error: Error while evaluating property 'filteredArgumentsMap' of task ':buildSrc:compileKotlin'

Md. Shofiulla
  • 2,135
  • 1
  • 13
  • 19

1 Answers1

0

Add this

 repositories{
        mavenCentral()
    }

in the build.gradle.kts file after the plugins block to solve.

Md. Shofiulla
  • 2,135
  • 1
  • 13
  • 19