> Configuration `debugUnitTestRuntimeClasspath` contains AndroidX dependencies, but the `android.useAndroidX` property is not enabled, which may cause runtime issues.
  Set `android.useAndroidX=true` in the `gradle.properties` file and retry.

こういうエラーが発生したら gradle.properties に以下を記載しよう。

android.useAndroidX=true

ちなみに gradle.properties を gitignore している場合は、以下を Gradle 実行前に1行追加するだけでOK。

echo "android.useAndroidX=true" >> gradle.properties