Fixed
Status Update
Comments
hu...@google.com <hu...@google.com> #2
an...@google.com <an...@google.com> #3
Thank you for your patience while our engineering team worked to resolve this issue. A fix for this issue is now available in:
- Android Studio Ladybug | 2024.1.3 Canary 1
- Android Gradle Plugin 8.7.0-alpha01
We encourage you to try the latest update.
If you notice further issues or have questions, please file a new bug report.
Thank you for taking the time to submit feedback — we really appreciate it!
Description
Kotlin build team reported a flaky test failure in tests that use data binding and Kapt:
The location
DataBindingCompilerArguments.kt:166
points to:where
apiVersionsFile
is defined as:To fix this issue, we probably need to change
apiVersionsFile.get().asFile
toapiVersionsFile.orNull?.asFile
becauseapiVersionsFile
is an@Optional
input (can benull
).(Potentially related: Issue 196847367 )