-
Notifications
You must be signed in to change notification settings - Fork 1
Description
As stated in the doc app should include dependency:
com.jakewharton:butterknife-gradle-plugin:9.0.0-SNAPSHOT
buildscript {
repositories {
google()
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.google.gms:google-services:4.0.0'
classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0-SNAPSHOT'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
But there the dependecy is no longer accessible.
https://oss.sonatype.org/content/repositories/snapshots/com/jakewharton/butterknife/9.0.0-SNAPSHOT/maven-metadata.xml
Could not determine the dependencies of task ':app:externalNativeBuildDevDebug
Could not resolve all task dependencies for configuration ':app:devDebugRuntimeClasspath'.
Could not find com.jakewharton:butterknife:9.0.0-SNAPSHOT.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/jakewharton/butterknife/9.0.0-SNAPSHOT/maven-metadata.xml
- https://dl.google.com/dl/android/maven2/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.pom
- https://dl.google.com/dl/android/maven2/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.jar
- https://jcenter.bintray.com/com/jakewharton/butterknife/9.0.0-SNAPSHOT/maven-metadata.xml
- https://jcenter.bintray.com/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.pom
- https://jcenter.bintray.com/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.jar
- https://jitpack.io/com/jakewharton/butterknife/9.0.0-SNAPSHOT/maven-metadata.xml
- https://jitpack.io/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.pom
- https://jitpack.io/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.jar
- https://oss.sonatype.org/content/repositories/snapshots/com/jakewharton/butterknife/9.0.0-SNAPSHOT/maven-metadata.xml
- https://oss.sonatype.org/content/repositories/snapshots/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.pom
- https://oss.sonatype.org/content/repositories/snapshots/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.jar
- https://giphy.bintray.com/giphy-sdk/com/jakewharton/butterknife/9.0.0-SNAPSHOT/maven-metadata.xml
- https://giphy.bintray.com/giphy-sdk/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.pom
- https://giphy.bintray.com/giphy-sdk/com/jakewharton/butterknife/9.0.0-SNAPSHOT/butterknife-9.0.0-SNAPSHOT.jar
Required by:
project :app > com.github.ChannelizeIO.Channelize-Android-SDK:channelizeui:4.2.4
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html`
Can I ask you to update SDK to the most recent butter-knife?