[PR #2993] [CLOSED] [deps]: Update AsyncAwaitBestPractices.MVVM to v7 #10084

Closed
opened 2026-04-11 02:34:58 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/2993
Author: @renovate[bot]
Created: 2/10/2024
Status: Closed

Base: mainHead: renovate/asyncawaitbestpractices.mvvm-7.x


📝 Commits (10+)

  • 3552616 Adding missing IDs for Set Password and Update Password pages (#2748)
  • 9026dd1 [PM-3593] Fix enable biometric on autofill when there is not MP (#2717)
  • 5961a00 [PM-3551] Expired SSO token cached (#2718)
  • b0f1dd0 Autosync the updated translations (#2751)
  • 382eee2 [PM-3556] Change anonaddy to addy io (#2711)
  • 3e2005e [PM-3606] TDE user with 2FA isn't able to autofill on iOS (#2723)
  • efd1671 Autosync the updated translations (#2771)
  • b932824 Make dept-development-mobile default code owner (#2780)
  • a6f0533 [PM-3393] Excessive Invalid Biometric unlock attempts should automatically log out TDE users (#2747)
  • 11922c6 [PM-3522] Keep variable value after logout. (#2761)

📊 Changes

2 files changed (+2 additions, -2 deletions)

View changed files

📝 src/App/App.csproj (+1 -1)
📝 src/Core/Core.csproj (+1 -1)

📄 Description

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
AsyncAwaitBestPractices.MVVM 6.0.6 -> 7.0.0 age adoption passing confidence

Release Notes

brminnick/AsyncAwaitBestPractices (AsyncAwaitBestPractices.MVVM)

v7.0.0

.NET 8.0 + ConfigureAwaitOptions Support

In this release, we add .NET 8.0 as a target framework 🎉

We've also added support to .SafeFireAndForget() for ConfigureAwaitOptions:

public static void SafeFireAndForget(this System.Threading.Tasks.Task task, ConfigureAwaitOptions configureAwaitOptions, Action<Exception>? onException = null)

.NET 8.0 Introduces ConfigureAwaitOptions that allow users to customize the behavior when awaiting:

  • ConfigureAwaitOptions.None
    • No options specified
  • ConfigureAwaitOptions.SuppressThrowing
    • Avoids throwing an exception at the completion of awaiting a Task that ends in the Faulted or Canceled state
  • ConfigureAwaitOptions.ContinueOnCapturedContext
    • Attempts to marshal the continuation back to the original SynchronizationContext or TaskScheduler present on the originating thread at the time of the await
  • ConfigureAwaitOptions.ForceYielding
    • Forces an await on an already completed Task to behave as if the Task wasn't yet completed, such that the current asynchronous method will be forced to yield its execution
What's Changed
Housekeeping

Full Changelog: https://github.com/brminnick/AsyncAwaitBestPractices/compare/v6.0.6...v7.0.0


Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/bitwarden/android/pull/2993 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 2/10/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `renovate/asyncawaitbestpractices.mvvm-7.x` --- ### 📝 Commits (10+) - [`3552616`](https://github.com/bitwarden/android/commit/355261679dee08911c58d1ade5f9fbbdfe75b9cd) Adding missing IDs for Set Password and Update Password pages (#2748) - [`9026dd1`](https://github.com/bitwarden/android/commit/9026dd10e5f6659203266e14a721018363801454) [PM-3593] Fix enable biometric on autofill when there is not MP (#2717) - [`5961a00`](https://github.com/bitwarden/android/commit/5961a001ab7df88790d7c6681da44225b5a63f6f) [PM-3551] Expired SSO token cached (#2718) - [`b0f1dd0`](https://github.com/bitwarden/android/commit/b0f1dd00eebd8c6640367ab7c711b89ff0c810ee) Autosync the updated translations (#2751) - [`382eee2`](https://github.com/bitwarden/android/commit/382eee2ed36fcabbafc69dd279333cffb163bafc) [PM-3556] Change anonaddy to addy io (#2711) - [`3e2005e`](https://github.com/bitwarden/android/commit/3e2005e5ed918ebedc856e331fb5674e18881fbe) [PM-3606] TDE user with 2FA isn't able to autofill on iOS (#2723) - [`efd1671`](https://github.com/bitwarden/android/commit/efd1671f489186e529ed9ff199b99c74b7bb9a21) Autosync the updated translations (#2771) - [`b932824`](https://github.com/bitwarden/android/commit/b932824b5a809558dc25179d19f800d3c06325dd) Make dept-development-mobile default code owner (#2780) - [`a6f0533`](https://github.com/bitwarden/android/commit/a6f05338c266e8453f5558d598e055ad2ad1b779) [PM-3393] Excessive Invalid Biometric unlock attempts should automatically log out TDE users (#2747) - [`11922c6`](https://github.com/bitwarden/android/commit/11922c6f4926ec3f9e644b1476ba356ed69f98e7) [PM-3522] Keep variable value after logout. (#2761) ### 📊 Changes **2 files changed** (+2 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `src/App/App.csproj` (+1 -1) 📝 `src/Core/Core.csproj` (+1 -1) </details> ### 📄 Description [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [AsyncAwaitBestPractices.MVVM](https://togithub.com/brminnick/AsyncAwaitBestPractices) | `6.0.6` -> `7.0.0` | [![age](https://developer.mend.io/api/mc/badges/age/nuget/AsyncAwaitBestPractices.MVVM/7.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/AsyncAwaitBestPractices.MVVM/7.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/AsyncAwaitBestPractices.MVVM/6.0.6/7.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/AsyncAwaitBestPractices.MVVM/6.0.6/7.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>brminnick/AsyncAwaitBestPractices (AsyncAwaitBestPractices.MVVM)</summary> ### [`v7.0.0`](https://togithub.com/brminnick/AsyncAwaitBestPractices/releases/tag/7.0.0) ##### .NET 8.0 + `ConfigureAwaitOptions` Support In this release, we add .NET 8.0 as a target framework 🎉 We've also added support to `.SafeFireAndForget()` for [`ConfigureAwaitOptions`](https://learn.microsoft.com/dotnet/api/system.threading.tasks.configureawaitoptions): ```csharp public static void SafeFireAndForget(this System.Threading.Tasks.Task task, ConfigureAwaitOptions configureAwaitOptions, Action<Exception>? onException = null) ``` .NET 8.0 Introduces [`ConfigureAwaitOptions`](https://learn.microsoft.com/dotnet/api/system.threading.tasks.configureawaitoptions) that allow users to customize the behavior when awaiting: - `ConfigureAwaitOptions.None` - No options specified - `ConfigureAwaitOptions.SuppressThrowing` - Avoids throwing an exception at the completion of awaiting a Task that ends in the Faulted or Canceled state - `ConfigureAwaitOptions.ContinueOnCapturedContext` - Attempts to marshal the continuation back to the original SynchronizationContext or TaskScheduler present on the originating thread at the time of the await - `ConfigureAwaitOptions.ForceYielding` - Forces an await on an already completed Task to behave as if the Task wasn't yet completed, such that the current asynchronous method will be forced to yield its execution ##### What's Changed - Add Support for `ConfigureAwaitOptions` in .NET 8 by [@&#8203;brminnick](https://togithub.com/brminnick) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/189](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/189) - Update to .NET 8.0 GA by [@&#8203;brminnick](https://togithub.com/brminnick) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/190](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/190) ##### Housekeeping - Bump Xamarin.UITest from 3.2.9 to 4.0.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/136](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/136) - Bump NUnit3TestAdapter from 4.3.0 to 4.3.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/137](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/137) - Bump Newtonsoft.Json from 13.0.1 to 13.0.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/138](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/138) - Bump Xamarin.UITest from 4.0.0 to 4.0.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/139](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/139) - Bump Xamarin.Forms from 5.0.0.2515+946-sha.94acebbb4-azdo.6439792 to 5.0.0.2545 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/140](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/140) - Bump Xamarin.Essentials from 1.7.3 to 1.7.4 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/141](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/141) - Bump Microsoft.NET.Test.Sdk from 17.4.0 to 17.4.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/142](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/142) - Bump Xamarin.UITest from 4.0.1 to 4.1.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/147](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/147) - Bump Xamarin.Essentials from 1.7.4 to 1.7.5 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/148](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/148) - Bump Xamarin.UITest from 4.1.0 to 4.1.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/150](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/150) - Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/151](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/151) - Bump NUnit3TestAdapter from 4.3.1 to 4.4.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/152](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/152) - Bump NUnit3TestAdapter from 4.4.0 to 4.4.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/153](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/153) - Bump Xamarin.Forms from 5.0.0.2545 to 5.0.0.2578 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/155](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/155) - Bump Newtonsoft.Json from 13.0.2 to 13.0.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/154](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/154) - Bump Xamarin.UITest from 4.1.2 to 4.1.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/156](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/156) - Bump Xamarin.TestCloud.Agent from 0.23.1 to 0.23.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/157](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/157) - Bump Xamarin.CommunityToolkit.Markup from 2.0.5 to 2.0.6 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/158](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/158) - Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/159](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/159) - Bump NUnit3TestAdapter from 4.4.2 to 4.5.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/160](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/160) - Bump Xamarin.UITest from 4.1.3 to 4.1.4 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/161](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/161) - Bump Microsoft.NET.Test.Sdk from 17.6.0 to 17.6.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/162](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/162) - Bump Microsoft.NET.Test.Sdk from 17.6.1 to 17.6.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/163](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/163) - Bump Xamarin.Essentials from 1.7.5 to 1.7.6 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/165](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/165) - Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/166](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/166) - Bump Xamarin.Essentials from 1.7.6 to 1.7.7 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/167](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/167) - Bump Xamarin.UITest from 4.1.4 to 4.2.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/168](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/168) - Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/169](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/169) - Bump Xamarin.Forms from 5.0.0.2578 to 5.0.0.2612 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/171](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/171) - Bump Xamarin.Essentials from 1.7.7 to 1.8.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/170](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/170) - Bump Microsoft.NET.Test.Sdk from 17.7.0 to 17.7.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/172](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/172) - Port Sample App to .NET MAUI by [@&#8203;brminnick](https://togithub.com/brminnick) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/173](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/173) - Bump Microsoft.NET.Test.Sdk from 17.7.1 to 17.7.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/174](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/174) - Update Sample to Support .NET 8 by [@&#8203;brminnick](https://togithub.com/brminnick) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/175](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/175) - Bump Microsoft.Maui.Controls from 8.0.0-preview.7.8842 to 8.0.0-rc.1.9171 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/177](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/177) - Bump Microsoft.Extensions.Http.Polly from 8.0.0-preview.7.23375.9 to 8.0.0-rc.1.23421.29 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/176](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/176) - Bump CommunityToolkit.Maui from 5.3.0 to 6.0.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/178](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/178) - Bump CommunityToolkit.Maui.Markup from 3.2.0 to 3.3.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/179](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/179) - Bump Microsoft.Maui.Controls from 8.0.0-rc.1.9171 to 8.0.0-rc.2.9373 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/180](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/180) - Bump Microsoft.Extensions.Http.Polly from 8.0.0-rc.1.23421.29 to 8.0.0-rc.2.23480.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/181](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/181) - Bump CommunityToolkit.Mvvm from 8.2.1 to 8.2.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/182](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/182) - Bump Microsoft.Maui.Controls from 8.0.0-rc.2.9373 to 8.0.0-rc.2.9511 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/183](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/183) - Bump CommunityToolkit.Maui from 6.0.0 to 6.1.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/185](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/185) - Bump NUnit from 3.13.3 to 3.14.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/186](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/186) - Bump Microsoft.Maui.Controls from 8.0.0-rc.2.9511 to 8.0.0-rc.2.9530 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/187](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/187) - Bump Microsoft.NET.Test.Sdk from 17.7.2 to 17.8.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/188](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/188) - Bump CommunityToolkit.Maui.Markup from 3.3.0 to 3.3.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/brminnick/AsyncAwaitBestPractices/pull/191](https://togithub.com/brminnick/AsyncAwaitBestPractices/pull/191) **Full Changelog**: https://github.com/brminnick/AsyncAwaitBestPractices/compare/v6.0.6...v7.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/bitwarden/android). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQxMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-11 02:34:58 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/android#10084