Set up testify-fullscreen
Prerequisites
In order to use the Android Testify Fullscreen Capture Method extension, you must first configure the Testify Plugin on your project. To set up Testify for your project, please refer to the Getting Started guide.
Root build.gradle
plugins {
id("dev.testify") version "3.2.0" apply false
}
settings.gradle
Ensure that mavenCentral()
is available to both pluginManagement
and dependencyResolutionManagement
.
Project configuration
The Android Testify Fullscreen Capture Method extension is packaged as a separate artifact. You must add an androidTestImplementation
statement to your build.gradle
file to import it.
Application build.gradle
dependencies {
androidTestImplementation "dev.testify:testify-fullscreen:2.0.0"
}