Guardsquare / appsweep-gradle

This Gradle plugin can be used to continuously integrate app scanning using AppSweep into your Android app build process
http://guardsquare.com/appsweep-mobile-application-security-testing
Apache License 2.0
47 stars 3 forks source link

Plugin was not found #3

Closed ArcherEmiya05 closed 2 years ago

ArcherEmiya05 commented 2 years ago

First of all thanks for this service, however I am getting an error upon Gradle sync

* What went wrong:
Plugin [id: 'com.guardsquare.appsweep', version: 'v.1.0.0'] was not found in any of the following sources:

- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'com.guardsquare.appsweep:com.guardsquare.appsweep.gradle.plugin:v.1.0.0')
  Searched in the following repositories:
    Gradle Central Plugin Repository

This is how the app lever build.gradle looks like


plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android' version "${kotlin_version}" // This should be put before any Kotlin dependent plugin
    id 'com.guardsquare.appsweep' version "v.1.0.0"
}

appsweep {
    apiKey APPSWEEP_API_KEY
}

dependencies { ... }

Do we still need to add classpath to this? Thanks

ArcherEmiya05 commented 2 years ago

Sorry silly me, it should be 1.0.0 not v.1.0.0