Skip to main content
Version: 2.0.0-alpha01

Set up an Android application project to use Testify

Before building your screenshot test with Testify, make sure to set a dependency reference to the Testify plugin:

Root build.gradle

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "dev.testify:plugin:2.0.0-alpha01"
}
}

Application build.gradle

plugins {
id("dev.testify")
}

dependencies {
androidTestImplementation "androidx.test:rules:1.4.0"
}