[PR #2228] [MERGED] EC-395 Apple Watch MVP #45045

Closed
opened 2026-04-26 12:16:14 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/2228
Author: @vvolkgang
Created: 12/7/2022
Status: Merged
Merged: 12/7/2022
Merged by: @vvolkgang

Base: masterHead: feature/apple-watch-mvp


📝 Commits (10+)

  • c34e472 [EC-426] Add watchOS PoC app (#2054)
  • 6221618 Merge branch 'master' into feature/apple-watch-mvp
  • fe9bb2f Merge branch 'master' into feature/apple-watch-mvp
  • 48c01c3 [EC-585] Added data, encryption and some helpers and structure to the Watch app (#2164)
  • 2294251 Merge branch 'master' into feature/apple-watch-mvp
  • 1a4dd89 [EC-614] Apple Watch MVP Cipher list UI (#2175)
  • f3a208e Merge branch 'master' into feature/apple-watch-mvp
  • e668605 [EC-615] Apple Watch MVP Cipher details UI (#2192)
  • 88d3896 Merge branch 'master' into feature/apple-watch-mvp
  • 62723c7 Merge branch 'master' into feature/apple-watch-mvp

📊 Changes

145 files changed (+5625 additions, -21 deletions)

View changed files

📝 .github/resources/export-options-app-store.plist (+4 -0)
.github/secrets/dist_watch_app.mobileprovision.gpg (+0 -0)
.github/secrets/dist_watch_app_extension.mobileprovision.gpg (+0 -0)
📝 .github/workflows/build.yml (+35 -0)
📝 .gitignore (+125 -0)
📝 src/Android/Android.csproj (+1 -0)
📝 src/Android/MainApplication.cs (+10 -2)
📝 src/Android/Services/DeviceActionService.cs (+1 -0)
src/Android/Services/WatchDeviceService.cs (+29 -0)
📝 src/App/Abstractions/IDeviceActionService.cs (+1 -0)
📝 src/App/Pages/Accounts/LockPageViewModel.cs (+3 -0)
📝 src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs (+35 -11)
📝 src/App/Pages/Vault/CipherAddEditPageViewModel.cs (+4 -0)
📝 src/App/Pages/Vault/CipherDetailsPageViewModel.cs (+5 -0)
📝 src/App/Resources/AppResources.Designer.cs (+9 -0)
📝 src/App/Resources/AppResources.resx (+3 -0)
src/App/Services/BaseWatchDeviceService.cs (+128 -0)
📝 src/App/Utilities/AccountManagement/AccountsManager.cs (+7 -1)
📝 src/Core/Abstractions/ICipherService.cs (+1 -1)
📝 src/Core/Abstractions/IStateService.cs (+3 -0)

...and 80 more files

📄 Description

Type of change

  • Bug fix
  • New feature development
  • Tech debt (refactoring, code cleanup, dependency upgrades, etc)
  • Build/deploy pipeline (DevOps)
  • Other

Objective

Final PR for the the new apple watch app. Check the watchOS label for the individual PR's that implemented this feature.

Before you submit

  • Please check for formatting errors (dotnet format --verify-no-changes) (required)
  • Please add unit tests where it makes sense to do so (encouraged but not required)
  • If this change requires a documentation update - notify the documentation team
  • If this change has particular deployment requirements - notify the DevOps team

🔄 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/2228 **Author:** [@vvolkgang](https://github.com/vvolkgang) **Created:** 12/7/2022 **Status:** ✅ Merged **Merged:** 12/7/2022 **Merged by:** [@vvolkgang](https://github.com/vvolkgang) **Base:** `master` ← **Head:** `feature/apple-watch-mvp` --- ### 📝 Commits (10+) - [`c34e472`](https://github.com/bitwarden/android/commit/c34e472d71f77bc96a6883dd6025085d94d75782) [EC-426] Add watchOS PoC app (#2054) - [`6221618`](https://github.com/bitwarden/android/commit/6221618e1b8484d7f5ebad3acf28d292efaafd3d) Merge branch 'master' into feature/apple-watch-mvp - [`fe9bb2f`](https://github.com/bitwarden/android/commit/fe9bb2f55911dddf4fa318d6fb112f8c8736902b) Merge branch 'master' into feature/apple-watch-mvp - [`48c01c3`](https://github.com/bitwarden/android/commit/48c01c374ff4f42d2ad1bff0563d4c6de000e6ab) [EC-585] Added data, encryption and some helpers and structure to the Watch app (#2164) - [`2294251`](https://github.com/bitwarden/android/commit/22942519a32d68b5839523f0d469ce6b8703c7dc) Merge branch 'master' into feature/apple-watch-mvp - [`1a4dd89`](https://github.com/bitwarden/android/commit/1a4dd896699a72d43219fe7bdf5e5c0b72b05680) [EC-614] Apple Watch MVP Cipher list UI (#2175) - [`f3a208e`](https://github.com/bitwarden/android/commit/f3a208ee9f504e111d3677a130347fa8893924c7) Merge branch 'master' into feature/apple-watch-mvp - [`e668605`](https://github.com/bitwarden/android/commit/e6686051ee2b5f4fdea0197aad1cb467fb82df7a) [EC-615] Apple Watch MVP Cipher details UI (#2192) - [`88d3896`](https://github.com/bitwarden/android/commit/88d38969d74cb86001b740318308a60c10cf2219) Merge branch 'master' into feature/apple-watch-mvp - [`62723c7`](https://github.com/bitwarden/android/commit/62723c7753624874af390226c572b18869a3dd28) Merge branch 'master' into feature/apple-watch-mvp ### 📊 Changes **145 files changed** (+5625 additions, -21 deletions) <details> <summary>View changed files</summary> 📝 `.github/resources/export-options-app-store.plist` (+4 -0) ➕ `.github/secrets/dist_watch_app.mobileprovision.gpg` (+0 -0) ➕ `.github/secrets/dist_watch_app_extension.mobileprovision.gpg` (+0 -0) 📝 `.github/workflows/build.yml` (+35 -0) 📝 `.gitignore` (+125 -0) 📝 `src/Android/Android.csproj` (+1 -0) 📝 `src/Android/MainApplication.cs` (+10 -2) 📝 `src/Android/Services/DeviceActionService.cs` (+1 -0) ➕ `src/Android/Services/WatchDeviceService.cs` (+29 -0) 📝 `src/App/Abstractions/IDeviceActionService.cs` (+1 -0) 📝 `src/App/Pages/Accounts/LockPageViewModel.cs` (+3 -0) 📝 `src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs` (+35 -11) 📝 `src/App/Pages/Vault/CipherAddEditPageViewModel.cs` (+4 -0) 📝 `src/App/Pages/Vault/CipherDetailsPageViewModel.cs` (+5 -0) 📝 `src/App/Resources/AppResources.Designer.cs` (+9 -0) 📝 `src/App/Resources/AppResources.resx` (+3 -0) ➕ `src/App/Services/BaseWatchDeviceService.cs` (+128 -0) 📝 `src/App/Utilities/AccountManagement/AccountsManager.cs` (+7 -1) 📝 `src/Core/Abstractions/ICipherService.cs` (+1 -1) 📝 `src/Core/Abstractions/IStateService.cs` (+3 -0) _...and 80 more files_ </details> ### 📄 Description ## Type of change - [ ] Bug fix - [x] New feature development - [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc) - [ ] Build/deploy pipeline (DevOps) - [ ] Other ## Objective Final PR for the the new apple watch app. Check the `watchOS` label for the individual PR's that implemented this feature. ## Before you submit - Please check for formatting errors (`dotnet format --verify-no-changes`) (required) - Please add **unit tests** where it makes sense to do so (encouraged but not required) - If this change requires a **documentation update** - notify the documentation team - If this change has particular **deployment requirements** - notify the DevOps team --- <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-26 12:16:14 -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#45045