everyone. I\'m using gradle version 5.6.2. I updated my android studio project dependencies like this:
dependencies {
classpath \'com.android.tools.build
This is a bug in the Android Gradle plugin, fixed now in Android Studio 3.6. It looks to only be an issue on Windows, as the path format uses the backslash \
instead of forward slash /
. I confirmed I am able to build my app on Android Studio 3.5 on Linux, but not Windows.
It was solved temporarily by adding this to build.gradle :
debug {
FirebasePerformance {
// Set this flag to 'false' to disable @AddTrace annotation processing and
// automatic HTTP/S network request monitoring
// for a specific build variant at compile time.
instrumentationEnabled false
}
}