I’m getting the following error when trying to import the following plugin in my Android app:
https://plugins.gradle.org/plugin/com.autonomousapps.cappuccino-animations
Error:Could not find gradle.plugin.com.autonomousapps:cappuccino-plugin:0.8.1.
Searched in the following locations:
file:/home/tony/.local/android-studio/gradle/m2repository/gradle/plugin/com/autonomousapps/cappuccino-plugin/0.8.1/cappuccino-plugin-0.8.1.pom
file:/home/tony/.local/android-studio/gradle/m2repository/gradle/plugin/com/autonomousapps/cappuccino-plugin/0.8.1/cappuccino-plugin-0.8.1.jar
See the rest here (I can’t include more than 10 links in a post): https://hastebin.com/ocoviregiq.rb
I’m following the instructions on the top link, viz, projectroot/build.gradle
:
buildscript {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://maven.google.com' }
maven { url 'https://jitpack.io' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
dependencies {
// ...other dependencies...
classpath 'gradle.plugin.com.autonomousapps:cappuccino-plugin:0.8.1'
}
}
I note that I am the author of this plugin, and successfully used the earlier version
classpath 'gradle.plugin.com.metova:cappuccino-plugin:0.7.3'
I’ve changed its name slightly, since I no longer own ‘metova’.