Home > database >  Plugin [id: 'kotlin-kapt'] was not found in any of the following sources: Gradle Core Plug
Plugin [id: 'kotlin-kapt'] was not found in any of the following sources: Gradle Core Plug

Time:12-23

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

CodePudding user response:

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.

  • Related