Search code examples
androidgradledependenciesgradlew

Gradle Dependecies Command cant find other maven repos


I want to check my projects dependencies but having problem when running

./gradlew app:dependencies

Here is the result of terminal.

Terminal Result

Thanks for helps.


Solution

  • I just needed to add new google repo to root gradle file.

    buildscript {
    repositories {
        ...
        // You need to add the following repository to download the
        // new plugin.
        google()
    }
    
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0-alpha5'
    }