Tip
This repo has the new native iOS app, currently in Beta. Looking for the legacy .NET MAUI apps? Head on over to bitwarden/mobile
- Minimum iOS: 15.0
- Target SDK: 15.0
- Device Types Supported: iPhone, iPad
- Screen Sizes Supported: iPhone SE to iPhone 15 Pro Max, iPad Mini to iPad Pro 12.9"
- Orientations Supported: Portrait, Landscape
-
Clone the repository:
$ git clone https://github.com/bitwarden/ios
-
Install Mint:
$ brew install mint
Alternatively, if you prefer to install Mint without
brew
, clone the Mint repo into a temporary directory and runmake
.$ git clone https://github.com/yonaskolb/Mint.git $ cd Mint $ make
-
Bootstrap the project:
$ Scripts/bootstrap.sh
Note Because
Scripts/bootstrap.sh
is how the project is generated,bootstrap.sh
will need to be run every time the project configuration or file structure has changed (for example, when files have been added, removed or moved). It is typically best practice to runbootstrap.sh
any time you switch branches or pull down changes.Alternatively, you can create git hooks to automatically execute the
bootstrap.sh
script every time a git hook occurs. To use the git hook scripts already defined in theScripts
directory, copy the scripts to the.git/hooks
directory.$ cp Scripts/post-merge .git/hooks/ $ cp Scripts/post-checkout .git/hooks/
- Open the project in Xcode 15.4+.
- Run the app in the Simulator with the
Bitwarden
target.
Due to slight snapshot test variations between iOS version, the test target requires running in an iPhone 15 Pro simulator (iOS 17.0.1).
-
In Xcode's toolbar, select the project and a connected device or simulator.
- The
Generic iOS Device
used for builds will not work for testing.
- The
-
In Xcode's menu bar, select
Product > Test
.- Test results appear in the Debug Area, which can be accessed from
View > Debug Area > Show Debug Area
if not already visible.
- Test results appear in the Debug Area, which can be accessed from
This project is linted using both SwiftLint and SwiftFormat. Both tools run in linting mode with every build of the Bitwarden
target. However, if you would like to have SwiftFormat autocorrect any issues that are discovered while linting, you can manually run the fix command mint run swiftformat .
.
Additionally, if you would like SwiftFormat to autocorrect any issues before every commit, you can use a git hook script. To use the git hook script already defined in the Scripts
directory, copy the script to the .git/hooks
directory.
$ cp Scripts/pre-commit .git/hooks/
- The icons used in the app are all custom. No additional licensing is required.
The following is a list of all third-party dependencies included as part of the application.
- Firebase Crashlytics
- https://github.com/firebase/firebase-ios-sdk
- Purpose: SDK for crash and non-fatal error reporting.
- License: Apache 2.0
The following dependencies are used in the development environment only. They are not present in deployed code.
- LicensePlist
- https://github.com/mono0926/LicensePlist
- Purpose: A tool to generate a list of third-party software licenses displayed in app settings.
- License: MIT
- Mint
- https://github.com/yonaskolb/mint
- Purpose: A package manager that installs and runs Swift command line tool packages.
- License: MIT
- SnapshotTesting
- https://github.com/pointfreeco/swift-snapshot-testing
- Purpose: Allow a snapshot test case which renders a UI component, takes a snapshot, then compares it to a reference snapshot file stored alongside the test.
- License: MIT
- SwiftGen
- https://github.com/SwiftGen/SwiftGen
- Purpose: A tool to automatically generate Swift code for project resources (like images, localized strings, etc), to make them type-safe to use.
- License: MIT
- SwiftFormat
- https://github.com/nicklockwood/SwiftFormat
- Purpose: A tool used to reformat Swift code to automatically adjust for some style conventions.
- License: MIT
- SwiftLint
- https://github.com/realm/SwiftLint
- Purpose: A tool to enforce Swift style and conventions.
- License: MIT
- ViewInspector
- https://github.com/nalexn/ViewInspector
- Purpose: A tool used to unit test SwiftUI views.
- License: MIT
- XcodeGen
- https://github.com/yonaskolb/XcodeGen
- Purpose: Generates the Xcode project using the folder structure and a project spec.
- License: MIT
The following is a list of additional third-party dependencies used as part of the CI/CD workflows. These are not present in the final packaged application.
- yeetd
- https://github.com/biscuitehh/yeetd
- Purpose: Improves the performance of Xcode 15 simulators while executing unit tests in a CI environment.
- License: MIT
This project's structure is split into separate sections to support sharing as much code between all of the targets as possible. All core functionality and the majority of UI elements can be found in the BitwardenShared
framework.
GlobalTestHelpers
is a directory that contains helper files used in all test targets. This directory is included in each target that is defined in the project.yml
file.