-
Notifications
You must be signed in to change notification settings - Fork 578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix copyRootGoogleServices task #5895
Conversation
Release note changesNo release note changes were detected. If you made changes that should be |
Size Report 1Affected ProductsNo changes between base commit (5c3f7ef) and merge commit (1deab42).Test Logs |
Unit Test Results 916 files ±0 916 suites ±0 31m 50s ⏱️ -14s For more details on these failures, see this check. Results for commit 6694deb. ± Comparison against base commit 5c3f7ef. ♻️ This comment has been updated with latest results. |
Coverage Report 1Affected Products
Test Logs |
Per b/322356188,
This fixes the issues with the
copyRootGoogleServices
task.Namely, it seems there are various tasks in the pipeline that have implicit dependencies on source files- which gradle doesn't like. To fix this, we just ensure
copyRootGoogleServices
is set as a dependency of them all.This PR also moves the
copyRootGoogleServices
task into our android library plugin- to keep everything together.