authenticator/README.md
<a href="https://play.google.com/store/apps/details?id=com.bitwarden.authenticator" target="_blank"></a>
Bitwarden Authenticator allows you easily store and generate two-factor authentication codes on your device. The Bitwarden Authenticator Android application is written in Kotlin.
Clone the repository:
$ git clone https://github.com/bitwarden/authenticator-android
Create a user.properties file in the root directory of the project and add the following properties:
gitHubToken: A "classic" Github Personal Access Token (PAT) with the read:packages scope (ex: gitHubToken=gph_xx...xx). These can be generated by going to the Github tokens page. See the Github Packages user documentation concerning authentication for more details.Setup the code style formatter:
All code must follow the guidelines described in the Code Style Guidelines document. To aid in adhering to these rules, all contributors should apply docs/bitwarden-style.xml as their code style scheme. In IntelliJ / Android Studio:
Preferences > Editor > Code Style.Manage button next to Scheme.Import.bitwarden-style.xml file in the project's docs/ directory.BitwardenStyle "to" BitwardenStyle.Apply and OK to save the changes and exit Preferences.Note that in some cases you may need to restart Android Studio for the changes to take effect.
All code should be formatted before submitting a pull request. This can be done manually but it can also be helpful to create a macro with a custom keyboard binding to auto-format when saving. In Android Studio on OS X:
Edit > Macros > Start Macro RecordingCode > Optimize ImportsCode > Reformat CodeFile > Save AllEdit > Macros > Stop Macro RecordingThis can then be mapped to a set of keys by navigating to Android Studio > Preferences and editing the macro under Keymap (ex : shift + command + s).
Please avoid mixing formatting and logical changes in the same commit/PR. When possible, fix any large formatting issues in a separate PR before opening one to make logical changes to the same code. This helps others focus on the meaningful code changes when reviewing the code.
Code contributions are welcome! Please commit any pull requests against the main branch. Learn more about how to contribute by reading the Contributing Guidelines. Check out the Contributing Documentation for how to get started with your first contribution.
Security audits and feedback are welcome. Please open an issue or email us privately if the report is sensitive in nature. You can read our security policy in the SECURITY.md file.