首页 > 解决方案 > Could not find com.github.kk121:File-Loader:1.2. while building app gives this error

问题描述

Could not find com.github.kk121:File-Loader:1.2. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/github/kk121/File-Loader/1.2/File-Loader-1.2.pom - https://repo.maven.apache.org/maven2/com/github/kk121/File-Loader/1.2/File-Loader-1.2.pom - https://jcenter.bintray.com/com/github/kk121/File-Loader/1.2/File-Loader-1.2.pom Required by: project :app

how solve this error

标签: androidgradle

解决方案


使用 Android Studio 北极狐 2020.3.1

而不是在您的项目级 gradle 文件中添加 maven { url "https://jitpack.io" } 将其添加到settings.gradle

settings.gradle

repositories {
        google()
        mavenCentral()
        maven { url "https://jitpack.io" }
        jcenter() // Warning: this repository is going to shut down soon
    }

推荐阅读