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
Using the TaskContainer.create method to create a task will spend unnecessary time when running a Gradle build. You should use the TaskContainer.register method. For more information, see the Gradle documentation.
Steps to reproduce:
Simply apply and configure the plugin. Any UploadDistributionTask, AddTestersTask, and RemoveTestersTask tasks will be created and configured during Gradle's configuration phase.
BTW: Where do I find the source code of the Gradle plugin? It doesn't seem to live in this repository.
The text was updated successfully, but these errors were encountered:
Hi @bmuschko, thank you for reaching out and suggesting how we can improve our Firebase SDK. I'll go ahead and mark this as a feature request. While we are unable to promise any timeline for this, we'll definitely keep this under our radar.
P.S. For folks who find this useful, adding an emoji thumbs up on the original post can help us prioritize adding this to the roadmap.
As for the Firebase App Distribution Gradle plugin source code, our engineers also aim for it to be open source, however, this is not the high priority at the moment.
Thanks for the info, @lehcar09. Marking the issue as a feature request sounds reasonable. Let me know in case you are open sourcing the Gradle plugin. I'd be happy to provide a pull request.
[REQUIRED] Step 2: Describe your environment
[REQUIRED] Step 3: Describe the problem
Using the
TaskContainer.create
method to create a task will spend unnecessary time when running a Gradle build. You should use theTaskContainer.register
method. For more information, see the Gradle documentation.Steps to reproduce:
Simply apply and configure the plugin. Any
UploadDistributionTask
,AddTestersTask
, andRemoveTestersTask
tasks will be created and configured during Gradle's configuration phase.BTW: Where do I find the source code of the Gradle plugin? It doesn't seem to live in this repository.
The text was updated successfully, but these errors were encountered: