You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment there are four exceptions when you enable org.gradle.unsafe.isolated-projects=true, all pointing at the usage of findProperty to retrieve these properties:
com.google.firebase.crashlytics.buildtools
com.google.firebase.crashlytics.fakeId
com.google.firebase.crashlytics.fakeOutput
com.google.firebase.crashlytics.logDebug
I believe these can be changed to providers.gradleProperty(...) to solve the issue.
Thanks for reporting this @cymerio. Those properties are for our automated tests only. I didn't realize they were violating project isolation. I will find another way to set up the tests.
What feature would you like to see?
At the moment there are four exceptions when you enable
org.gradle.unsafe.isolated-projects=true
, all pointing at the usage offindProperty
to retrieve these properties:I believe these can be changed to
providers.gradleProperty(...)
to solve the issue.How would you use it?
Isolated projects would improve performance of the "sync" step in Android Studio:
https://docs.gradle.org/current/userguide/isolated_projects.html
The text was updated successfully, but these errors were encountered: