Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to resolve: org.litepal.guolindev:core:3.2.3 #808

Open
793383996 opened this issue Sep 9, 2022 · 3 comments
Open

Failed to resolve: org.litepal.guolindev:core:3.2.3 #808

793383996 opened this issue Sep 9, 2022 · 3 comments

Comments

@793383996
Copy link

Failed to resolve: org.litepal.guolindev:core:3.2.3

小红框对应位置添加

jcenter()
maven { url 'https://jitpack.io' }

需要更新仓库了

@laoyingyong
Copy link

jenter早就提桶跑路了,可以使用阿里云镜像,例如现在最新版的AS是在settings.gradle配置maven { url 'https://maven.aliyun.com/repository/public' }的

pluginManagement { repositories { gradlePluginPortal() google() maven { url 'https://maven.aliyun.com/repository/public' } mavenCentral() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() maven { url 'https://maven.aliyun.com/repository/public' } mavenCentral() } } rootProject.name = "MVPTest" include ':app'

@Arsun
Copy link

Arsun commented Oct 5, 2022 via email

@yantaozhao
Copy link

yantaozhao commented Oct 9, 2022

Add jcenter() works:

i.e.:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        jcenter()  // added
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants