[PR #1807] [MERGED] Account Switching #3143

Closed
opened 2025-11-26 23:28:51 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/1807
Author: @mpbw2
Created: 2/23/2022
Status: Merged
Merged: 2/23/2022
Merged by: @mpbw2

Base: masterHead: accountswitching


📝 Commits (10+)

  • 59c8c7c Account Switching (#1720)
  • ce8ed79 merge latest (#1727)
  • 58c8f4b Merge branch 'master' into accountswitching
  • c2acf3f Merge branch 'master' into accountswitching
  • d146257 Merge branch 'master' into accountswitching
  • f749461 remove duplicate dependency
  • 5d90c78 Merge branch 'master' into accountswitching
  • f22c42b fix for initial login token storage paradox (#1730)
  • dd322cf Merge branch 'master' into accountswitching
  • 1bfbc0e Fix avatar color update toolbar item issue on iOS for account switching (#1735)

📊 Changes

144 files changed (+5061 additions, -1758 deletions)

View changed files

📝 src/Android/Accessibility/AccessibilityService.cs (+5 -6)
📝 src/Android/Android.csproj (+2 -1)
📝 src/Android/Autofill/AutofillService.cs (+9 -10)
📝 src/Android/Autofill/Parser.cs (+2 -2)
📝 src/Android/MainActivity.cs (+4 -4)
📝 src/Android/MainApplication.cs (+9 -8)
📝 src/Android/Push/FirebaseMessagingService.cs (+2 -2)
📝 src/Android/Receivers/PackageReplacedReceiver.cs (+5 -5)
📝 src/Android/Renderers/CustomTabbedRenderer.cs (+8 -2)
src/Android/Resources/drawable/cog_environment.xml (+9 -0)
📝 src/Android/Resources/drawable/cog_settings.xml (+1 -1)
📝 src/Android/Services/AndroidPushNotificationService.cs (+6 -7)
📝 src/Android/Services/ClipboardService.cs (+4 -4)
📝 src/Android/Services/DeviceActionService.cs (+6 -7)
📝 src/Android/Tiles/AutofillTileService.cs (+4 -5)
📝 src/Android/Utilities/AppCenterHelper.cs (+4 -4)
📝 src/App/App.csproj (+7 -2)
📝 src/App/App.xaml.cs (+90 -24)
src/App/Controls/AccountSwitchingOverlay/AccountSwitchingOverlayView.xaml (+55 -0)
src/App/Controls/AccountSwitchingOverlay/AccountSwitchingOverlayView.xaml.cs (+142 -0)

...and 80 more files

📄 Description

Merge account switching to master - see all previous PRs from accountswitching branch for details


🔄 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/1807 **Author:** [@mpbw2](https://github.com/mpbw2) **Created:** 2/23/2022 **Status:** ✅ Merged **Merged:** 2/23/2022 **Merged by:** [@mpbw2](https://github.com/mpbw2) **Base:** `master` ← **Head:** `accountswitching` --- ### 📝 Commits (10+) - [`59c8c7c`](https://github.com/bitwarden/android/commit/59c8c7cf5ff7f32e6e978084ca0863d2a9429df3) Account Switching (#1720) - [`ce8ed79`](https://github.com/bitwarden/android/commit/ce8ed795aaff2ce56dc7170d053f9d27d4894d42) merge latest (#1727) - [`58c8f4b`](https://github.com/bitwarden/android/commit/58c8f4bd93f9e05ae7cdfb9650c98873392099de) Merge branch 'master' into accountswitching - [`c2acf3f`](https://github.com/bitwarden/android/commit/c2acf3f7ae76fccedba3b087e8f840810fc7b75a) Merge branch 'master' into accountswitching - [`d146257`](https://github.com/bitwarden/android/commit/d1462576f190b38a8b5ed638168d4b8b97b21c73) Merge branch 'master' into accountswitching - [`f749461`](https://github.com/bitwarden/android/commit/f749461606f964aedb11043f46f8d912e0f613ee) remove duplicate dependency - [`5d90c78`](https://github.com/bitwarden/android/commit/5d90c78305ff60e61927466e764b090dadffddbd) Merge branch 'master' into accountswitching - [`f22c42b`](https://github.com/bitwarden/android/commit/f22c42badcca0123eba44895c1b773c94a3d2022) fix for initial login token storage paradox (#1730) - [`dd322cf`](https://github.com/bitwarden/android/commit/dd322cfa2af51ed773e6c9372a717e7bc77b46d2) Merge branch 'master' into accountswitching - [`1bfbc0e`](https://github.com/bitwarden/android/commit/1bfbc0ead83581d8dd4049b61cfad30193c71e0b) Fix avatar color update toolbar item issue on iOS for account switching (#1735) ### 📊 Changes **144 files changed** (+5061 additions, -1758 deletions) <details> <summary>View changed files</summary> 📝 `src/Android/Accessibility/AccessibilityService.cs` (+5 -6) 📝 `src/Android/Android.csproj` (+2 -1) 📝 `src/Android/Autofill/AutofillService.cs` (+9 -10) 📝 `src/Android/Autofill/Parser.cs` (+2 -2) 📝 `src/Android/MainActivity.cs` (+4 -4) 📝 `src/Android/MainApplication.cs` (+9 -8) 📝 `src/Android/Push/FirebaseMessagingService.cs` (+2 -2) 📝 `src/Android/Receivers/PackageReplacedReceiver.cs` (+5 -5) 📝 `src/Android/Renderers/CustomTabbedRenderer.cs` (+8 -2) ➕ `src/Android/Resources/drawable/cog_environment.xml` (+9 -0) 📝 `src/Android/Resources/drawable/cog_settings.xml` (+1 -1) 📝 `src/Android/Services/AndroidPushNotificationService.cs` (+6 -7) 📝 `src/Android/Services/ClipboardService.cs` (+4 -4) 📝 `src/Android/Services/DeviceActionService.cs` (+6 -7) 📝 `src/Android/Tiles/AutofillTileService.cs` (+4 -5) 📝 `src/Android/Utilities/AppCenterHelper.cs` (+4 -4) 📝 `src/App/App.csproj` (+7 -2) 📝 `src/App/App.xaml.cs` (+90 -24) ➕ `src/App/Controls/AccountSwitchingOverlay/AccountSwitchingOverlayView.xaml` (+55 -0) ➕ `src/App/Controls/AccountSwitchingOverlay/AccountSwitchingOverlayView.xaml.cs` (+142 -0) _...and 80 more files_ </details> ### 📄 Description Merge account switching to master - see all previous PRs from `accountswitching` branch for details --- <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 2025-11-26 23:28:51 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/android#3143