nAkhmedov
nAkhmedov

Reputation: 3592

gradle android commonsware not found maven

App build is failing with the below error message

com.intellij.openapi.externalSystem.model.ExternalSystemException: Could not find any version that matches com.commonsware.cwac:colormixer:0.6.+.

repositories {
    maven {
       url "https://repo.commonsware.com.s3.amazonaws.com"
    }
}

dependencies {
     compile 'com.commonsware.cwac:colormixer:0.6.+'
}   

After changing gradle version 2.2.1 instaed of 1.11 it gives like this error:

2014-12-23 16:03:16,849 [ 215344] WARN - nal.AbstractExternalSystemTask - You are using Gradle version 1.9, which is not supported by the version of the Android Gradle plug-in the project is using. Please use version 1.10. Please point to a supported Gradle version in the project's Gradle settings or in the project's Gradle wrapper (if applicable.) com.intellij.openapi.externalSystem.model.ExternalSystemException: You are using Gradle version 1.9, which is not supported by the version of the Android Gradle plug-in the project is using. Please use version 1.10. Please point to a supported Gradle version in the project's Gradle settings or in the project's Gradle wrapper (if applicable.)

Can anybody help why 'ColorMixer' lib is not being found?

Upvotes: 1

Views: 512

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007584

My apologies. I was dealing with some problems with my Maven repo yesterday. While I fixed most projects, colormixer was one I missed.

The problem is fixed now, though it may require you to run gradle --refresh-dependencies to get Gradle to pick up the formerly-missing artifact.

Upvotes: 2

Related Questions