LitePal icon indicating copy to clipboard operation
LitePal copied to clipboard

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

Open 793383996 opened this issue 2 years ago • 4 comments

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

小红框对应位置添加

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

需要更新仓库了

793383996 avatar Sep 09 '22 04:09 793383996

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'

laoyingyong avatar Oct 05 '22 04:10 laoyingyong

这是来自QQ邮箱的假期自动回复邮件。   您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。

Arsun avatar Oct 05 '22 04:10 Arsun

Add jcenter() works:

i.e.:

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

yantaozhao avatar Oct 09 '22 10:10 yantaozhao