<@U822EMCSH> Not sure if it's related, but I had t...
# announcements
a
@albertgao Not sure if it's related, but I had to turn on TestNG support for the tests (this was for an Android project though)
Copy code
// Configure TestNG
project.afterEvaluate {
    def tests = project.getTasksByName("testDebugUnitTest", false) + project.getTasksByName("testReleaseUnitTest", false)
    tests.forEach {
        it.doFirst {
            useTestNG()
            testLogging.showStandardStreams = true
        }
    }
}
a
Let me try! Thanks first!