We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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`
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:
Can I ask you to update SDK to the most recent butter-knife?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As stated in the doc app should include dependency:
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
Can I ask you to update SDK to the most recent butter-knife?
The text was updated successfully, but these errors were encountered: