WheelPicker icon indicating copy to clipboard operation
WheelPicker copied to clipboard

Failed to resolve: cn.aigestudio.wheelpicker:WheelPicker:1.1.3

Open avrutisavaliya-logistic opened this issue 1 year ago • 2 comments

Could not determine the dependencies of task ':app:processDebugResources'.

Could not resolve all dependencies for configuration ':app:debugRuntimeClasspath'. Could not find cn.aigestudio.wheelpicker:WheelPicker:1.1.3. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/cn/aigestudio/wheelpicker/WheelPicker/1.1.3/WheelPicker-1.1.3.pom - https://repo.maven.apache.org/maven2/cn/aigestudio/wheelpicker/WheelPicker/1.1.3/WheelPicker-1.1.3.pom

   this can make my project issue please help me out

avrutisavaliya-logistic avatar Sep 20 '24 07:09 avrutisavaliya-logistic

Same problem, fixed adding maven { url "https://maven.scijava.org/content/repositories/public/" }

Gradle file:

allprojects {
    repositories {
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
        maven { url "https://maven.scijava.org/content/repositories/public/" }
    }
}

analuisamartins avatar Oct 08 '24 08:10 analuisamartins

Same problem, fixed adding maven { url "https://maven.scijava.org/content/repositories/public/" }

Gradle file:

allprojects {
    repositories {
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
        maven { url "https://maven.scijava.org/content/repositories/public/" }
    }
}

Saved me a day! I have about 6 dependencies with this problem, and my project cannot compile, now it's all OK!

hanswimtj avatar Nov 28 '24 02:11 hanswimtj

It doesnt work

haihack avatar Jun 24 '25 12:06 haihack

Same problem, fixed adding maven { url "https://maven.scijava.org/content/repositories/public/" }

Gradle file:

allprojects {
    repositories {
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
        maven { url "https://maven.scijava.org/content/repositories/public/" }
    }
}

update info: ref https://github.com/devaige/WheelPicker/issues/178

allprojects {
    repositories {
        google()
        mavenCentral()
        maven { url "https://maven.aliyun.com/repository/public/" }
    }
}

free-kyo avatar Aug 08 '25 05:08 free-kyo

just in case this also worked for me

maven { url "https://artifactory.appodeal.com/appodeal-public/" }

aliunco avatar Aug 28 '25 07:08 aliunco