google-developer-training / basic-android-kotlin-compose-training-bus-schedule-app

Apache License 2.0
26 stars 25 forks source link

Build Bus Schedule App - Plugin was not found in any of the following sources #9

Open damien7792 opened 1 year ago

damien7792 commented 1 year ago

URL of codelab: https://developer.android.com/codelabs/basic-android-kotlin-compose-practice-bus-schedule-app?continue=https%3A%2F%2Fdeveloper.android.com%2Fcourses%2Fpathways%2Fandroid-basics-compose-unit-6-pathway-2%23codelab-https%3A%2F%2Fdeveloper.android.com%2Fcodelabs%2Fbasic-android-kotlin-compose-practice-bus-schedule-app#0

In which task and step of the codelab can this issue be found? Step 2, download starter code

Describe the problem When building the project, I'm getting the following error message:

Steps to reproduce? I cloned the repo and switched to the starter branch I opened the project in IntelliJ I tried to build the project with

This is the settings.gradle file content

pluginManagement { repositories { google() mavenCentral() gradlePluginPortal() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() } } rootProject.name = "Bus Schedule" include(":app")