Md. Shofiulla
Md. Shofiulla

Reputation: 2305

Cannot resolve external dependency org.jetbrains.kotlin:kotlin-sam-with-receiver:1.5.31 because no repositories are defined

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

Upvotes: 2

Views: 1467

Answers (1)

Md. Shofiulla
Md. Shofiulla

Reputation: 2305

Add this

repositories {
    mavenCentral()
}

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

Upvotes: 2

Related Questions