Skip to main content
Version: 2.0.0

Set up testify-fullscreen

Maven Central

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

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

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"
}