Skip to main content
Version: 2.0.0

Set up testify-accessibility

Maven Central

Prerequisites

In order to use the Android Testify Accessibility Checks 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 Accessibility Checks 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-accessibility:2.0.0"
}