Search Gradle plugins

pl.droidsonroids.animation-disabler

Gradle plugin for disabling animations in global settings before UI tests and reenabling them afterwards

https://github.com/koral--/android-animation-disabler

Sources: https://github.com/koral--/android-animation-disabler.git

Version 1.0.9 (latest)

1.0.9

Created 25 June 2021.

Gradle plugin for disabling animations in global settings before UI tests and reenabling them afterwards

Add this plugin to your build using the plugins DSL:

plugins {
  id("pl.droidsonroids.animation-disabler") version "1.0.9"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("pl.droidsonroids.gradle:plugin:1.0.9")
      }
    }
    
    apply(plugin = "pl.droidsonroids.animation-disabler")
  • Applying plugins to all subprojects .