为什么Gradle不下载依赖项?

11dmarpk  于 2022-11-14  发布在  其他
关注(0)|答案(2)|浏览(222)

我正在尝试将此ColorPicker添加到我的Android项目中。
我将这个库导入到我的Java类中:

import petrov.kristiyan.colorpicker.ColorPicker;

当我将其添加到Gradle并同步时,我没有收到任何错误。
但是当我建置项目时,我收到这个错误:

Task failed with an exception.
-----------
* What went wrong:
Execution failed for task ':app:checkDebugAarMetadata'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
   > Could not find petrov.kristiyan:colorpicker-library:1.1.10.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/petrov/kristiyan/colorpicker-library/1.1.10/colorpicker-library-1.1.10.pom
       - https://repo.maven.apache.org/maven2/petrov/kristiyan/colorpicker-library/1.1.10/colorpicker-library-1.1.10.pom
     Required by:
         project :app

Gradle项目文件:

plugins {
    id 'com.android.application' version '7.3.1' apply false
    id 'com.android.library' version '7.3.1' apply false
}

Gradle应用程序文件:

plugins {
    id 'com.android.application'
}

android {
    namespace 'com.example.appname'
    compileSdk 33

    defaultConfig {
        applicationId "com.example.appname"
        minSdk 21
        targetSdk 33
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation 'androidx.appcompat:appcompat:1.5.1'
    implementation 'com.google.android.material:material:1.6.1'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    implementation 'petrov.kristiyan:colorpicker-library:1.1.10'

    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

我安装了Android Studio版本2021.3.1补丁1。
我按照this post中提到的步骤操作,但没有成功。
我也面临着同样的问题与这个ColorPicker
有没有人有其他办法解决这个问题?

mepcadol

mepcadol1#

我试着拉库,并有相同的结果,因为你的。看看这3个搜索结果从maven库
Search Result 1
Search Result 2
Search Result 3
看起来这个库已经很多年没有更新了,你有没有考虑过寻找另一个颜色选择器库?,我推荐这个我使用的。
Go Daddy Color Picker
虽然不确定开发人员是否有这个的xml版本,因为这是针对Compose使用的,但是您可以将composables集成到xml中,并且此选择器返回一个对象,该对象包含您可以使用的Color的4个属性:huesaturationalphavalue

amrnrhlw

amrnrhlw2#

看起来该库是旧的,并且没有迁移到Maven Central资源库,因为JCenter已被弃用。
但是您可以从Jitpack存储库中使用它:
1.将其添加到您的根build.gradle中的存储库末尾:

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

1.将依赖项添加到您的应用构建版本。gradle:

dependencies {
    implementation 'com.github.kristiyanP:colorpicker:v1.1.10'
}

好好享受吧!

相关问题