Set up testify-accessibility
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
plugins {
    id("dev.testify") version "3.2.2" apply false
}
settings.gradle
Ensure that mavenCentral() is available to both pluginManagement and dependencyResolutionManagement.
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:3.2.2"
}