[PR #1726] [CLOSED] Account Switching with latest from master #33574

Closed
opened 2026-04-21 01:19:37 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/1726
Author: @mpbw2
Created: 1/21/2022
Status: Closed

Base: accountswitchingHead: feature-accountswitch-mergelatest


📝 Commits (10+)

  • ebae258 Account switching
  • d1ece79 Merge branch 'master' into feature-accountswitch
  • 120fb70 WIP
  • 6573948 wip
  • e3a8d3b Merge branch 'master' into feature-accountswitch
  • e20ae26 wip
  • f6d4b0a updates to send test logic
  • 6aa96b8 Merge branch 'master' into feature-accountswitch
  • 1c6a896 fixed Send tests
  • ed2bb9b fixes for theme handling on account switching and re-adding existing account

📊 Changes

216 files changed (+4530 additions, -1990 deletions)

View changed files

📝 src/Android/Accessibility/AccessibilityService.cs (+5 -6)
📝 src/Android/Android.csproj (+5 -4)
src/Android/Assets/FontAwesome.ttf (+0 -0)
src/Android/Assets/bwi-font.ttf (+0 -0)
📝 src/Android/Autofill/AutofillHelpers.cs (+2 -3)
📝 src/Android/Autofill/AutofillService.cs (+114 -88)
📝 src/Android/Autofill/Parser.cs (+2 -2)
📝 src/Android/MainActivity.cs (+4 -4)
📝 src/Android/MainApplication.cs (+6 -8)
📝 src/Android/Push/FirebaseMessagingService.cs (+2 -2)
📝 src/Android/Receivers/PackageReplacedReceiver.cs (+5 -5)
📝 src/Android/Resources/drawable/card.xml (+5 -5)
src/Android/Resources/drawable/cog.xml (+0 -9)
src/Android/Resources/drawable/cog_environment.xml (+9 -0)
src/Android/Resources/drawable/cog_settings.xml (+9 -0)
src/Android/Resources/drawable/generate.xml (+9 -0)
📝 src/Android/Resources/drawable/id.xml (+5 -5)
📝 src/Android/Resources/drawable/info.xml (+7 -7)
📝 src/Android/Resources/drawable/lock.xml (+5 -5)
📝 src/Android/Resources/drawable/login.xml (+5 -5)

...and 80 more files

📄 Description

This PR is a copy of #1720 but with the latest from master merged/resolved. Once 1720 is merged to accountswitching, this will follow to bring accountswitching up to date with master.


🔄 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/1726 **Author:** [@mpbw2](https://github.com/mpbw2) **Created:** 1/21/2022 **Status:** ❌ Closed **Base:** `accountswitching` ← **Head:** `feature-accountswitch-mergelatest` --- ### 📝 Commits (10+) - [`ebae258`](https://github.com/bitwarden/android/commit/ebae2585f6364ae4d7fe06802c65eae9f2557e56) Account switching - [`d1ece79`](https://github.com/bitwarden/android/commit/d1ece79d2e2023bb27ddd4bd632ed3e8d1c70bde) Merge branch 'master' into feature-accountswitch - [`120fb70`](https://github.com/bitwarden/android/commit/120fb700394c0617082ebac8217d54febecddf49) WIP - [`6573948`](https://github.com/bitwarden/android/commit/65739489a79e3bb7933c951a26a1f65c8fd04222) wip - [`e3a8d3b`](https://github.com/bitwarden/android/commit/e3a8d3bb55df3849fa1df32d050b20a025cc4c79) Merge branch 'master' into feature-accountswitch - [`e20ae26`](https://github.com/bitwarden/android/commit/e20ae26808fd5576beeb39c293c7bf2d1be6b7be) wip - [`f6d4b0a`](https://github.com/bitwarden/android/commit/f6d4b0a443f32bcd5d71256d51a97dbe5845f560) updates to send test logic - [`6aa96b8`](https://github.com/bitwarden/android/commit/6aa96b89641eb1df5cbd4596b1f3f22068f83f68) Merge branch 'master' into feature-accountswitch - [`1c6a896`](https://github.com/bitwarden/android/commit/1c6a8964fed6e936d2b63037b85d2f68519ea459) fixed Send tests - [`ed2bb9b`](https://github.com/bitwarden/android/commit/ed2bb9b94e4b64a24fd994ab9475921f4cb2a117) fixes for theme handling on account switching and re-adding existing account ### 📊 Changes **216 files changed** (+4530 additions, -1990 deletions) <details> <summary>View changed files</summary> 📝 `src/Android/Accessibility/AccessibilityService.cs` (+5 -6) 📝 `src/Android/Android.csproj` (+5 -4) ➖ `src/Android/Assets/FontAwesome.ttf` (+0 -0) ➕ `src/Android/Assets/bwi-font.ttf` (+0 -0) 📝 `src/Android/Autofill/AutofillHelpers.cs` (+2 -3) 📝 `src/Android/Autofill/AutofillService.cs` (+114 -88) 📝 `src/Android/Autofill/Parser.cs` (+2 -2) 📝 `src/Android/MainActivity.cs` (+4 -4) 📝 `src/Android/MainApplication.cs` (+6 -8) 📝 `src/Android/Push/FirebaseMessagingService.cs` (+2 -2) 📝 `src/Android/Receivers/PackageReplacedReceiver.cs` (+5 -5) 📝 `src/Android/Resources/drawable/card.xml` (+5 -5) ➖ `src/Android/Resources/drawable/cog.xml` (+0 -9) ➕ `src/Android/Resources/drawable/cog_environment.xml` (+9 -0) ➕ `src/Android/Resources/drawable/cog_settings.xml` (+9 -0) ➕ `src/Android/Resources/drawable/generate.xml` (+9 -0) 📝 `src/Android/Resources/drawable/id.xml` (+5 -5) 📝 `src/Android/Resources/drawable/info.xml` (+7 -7) 📝 `src/Android/Resources/drawable/lock.xml` (+5 -5) 📝 `src/Android/Resources/drawable/login.xml` (+5 -5) _...and 80 more files_ </details> ### 📄 Description This PR is a copy of #1720 but with the latest from master merged/resolved. Once 1720 is merged to `accountswitching`, this will follow to bring `accountswitching` up to date with master. --- <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-21 01:19:37 -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#33574