christopherney / Enigma

Gradle Plugin - Obfuscator String Encryption (Android/Java)
MIT License
160 stars 25 forks source link

Cannot find plugin dependency #1

Closed hermannpoilpre closed 4 years ago

hermannpoilpre commented 4 years ago

Could not find chrisney:enigma:1.0.0.5-SNAPSHOT. Searched in the following locations:

christopherney commented 4 years ago

Hello Hermann ;-)

Fixed, error with classpath dependency:

buildscript {
  repositories {
    google()
    jcenter()
    // Add Maven repo
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {     
    classpath 'com.android.tools.build:gradle:3.5.2'
    // Add the Enigma classpath
    classpath 'gradle.plugin.chrisney:enigma:1.0.0.5-SNAPSHOT'
  }
}