com.guardsquare.appsweep
Owner:
Guardsquare
Continuous Integration of app scanning using Guardsquare AppSweep.
https://guardsquare.com/appsweep-mobile-application-security-testing
Sources: https://github.com/guardsquare/appsweep-gradle
Version 1.5.10 (latest)
Created 20 May 2025.
Scanning your app via this plugin is deprecated. Please use the Guardsquare CLI for integration of AppSweep (https://help.guardsquare.com/en/articles/161270-using-the-guardsquare-cli)
Add this plugin to your build using the plugins DSL:
plugins {
id("com.guardsquare.appsweep") version "1.5.10"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.guardsquare.appsweep:com.guardsquare.appsweep.gradle.plugin:1.5.10") }
It can then be applied in the precompiled script plugin:plugins { id("com.guardsquare.appsweep") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.guardsquare.appsweep:com.guardsquare.appsweep.gradle.plugin:1.5.10") } } apply(plugin = "com.guardsquare.appsweep")
- Applying plugins to all subprojects .