Using the Command Line

To clear the cache using the command line:

  1. Stop Gradle.
    $ gradlew --stop
  2. You may also need to refresh dependencies.
    $ gradlew --refresh-dependencies

You can also try removing the Splunk AppDynamics cached images.

  1. Find the images.

    $ find ~/.gradle/caches -name com.appdynamics
  2. Delete them.

    $ find ~/.gradle/caches -name com.appdynamics -print0 | xargs -0 rm -r