gradleandroid-gradle-pluginandroid-jetpack-composeandroid-roomandroid-jetpack

Plugin [id: 'kotlin-kapt'] was not found in any of the following sources: Gradle Core Plugins & Plugin Repositories


I tried adding Room to my Jetpack Compose project, as described here: https://developer.android.com/jetpack/androidx/releases/room?authuser=1

I got this: enter image description here

I did this: (as described here: https://stackoverflow.com/a/66114787/20009330) enter image description here

I got this: enter image description here

Here is the github repo: https://github.com/folsze/AudioHub


Solution

  • You need to add it on the app build.gradle file at the top where it will look like this:

        plugins {
        id 'com.android.application'
        id 'org.jetbrains.kotlin.android'
        id 'kotlin-kapt'
    }
    

    At the moment you have it in your project build.gradle file so it's in the wrong place.