The companion Android app for MyRoboJackets
Most dependencies are provided via Gradle.
NFC functionality uses the NXP MIFARE TapLinx Android SDK. You must provide a license key and offline license key from the TapLinx Developer Center on https://www.mifare.net/en/products/tools/taplinx/.
Additionally, important licensing information about the TapLinx library is included in the libs
directory, including the license
and Software Content Register.
Note: For RoboJackets developers, reach out in #apiary-mobile in Slack to obtain our keys.
Once you have the two keys, append the following two lines to your Gradle local.properies
file. Do not commit this file to version control.
taplinxKey=KEY_HERE
taplinxOfflineKey=OFFLINE_KEY_HERE
sentryDsn=SENTRY_DSN_HERE
There are 5 modules encompassing features and utilities.
- app - The main application module
Note: To avoid circular dependencies, the below modules must not have the app module as a
dependency. Place such code in the base
(or a new) module.
- base - Base files that are used in all other modules, settings screen UI
- navigation - Utility code for navigating between screens
- auth - Authentication logic and UI
- attendance - Attendance logic and UI
Dependency versions are managed centrally in
Dependencies.kt in the buildSrc
module. If you change
a version in Dependencies.kt
, make sure to manually sync Gradle because Android Studio might not
recognize that the change requires a Gradle sync.
After adding a dependency in Dependencies.kt
, you must also add it to the appropriate Gradle
Script (take a look at a build.gradle.kts
file for one of the modules for examples).
Environment definitions that allow changing what MyRoboJackets instance to use are specified in
AppEnvironment.kt in the base
module.
It's important to fetch environment values as close as possible to using them, since they could change after being retrieved.
Since public OAuth2 (with PKCE) is used for authentication, there is no OAuth2 client secret. If the included client ID for an environment does not work, you can create a new OAuth2 client in Nova in MyRoboJackets (requires the admin role).
Hilt is used for dependency injection. The Hilt and Dagger annotations cheat sheet is a helpful resource.
Detekt is used for linting Kotlin code. The recommended command to run it is
./gradlew detektAll -PdetektAutoFix=true
The detektAutoFix parameter will automatically fix simple issues.
We use Fastlane to automate steps of the Android release process, in combination with Github Actions.
To install Fastlane, you'll need Ruby with the development kit installed. On Windows, install the latest 64-bit version of Ruby+Devkit from https://rubyinstaller.org/downloads/.
You can install the Fastlane dependencies by running bundle install
from the root of this repository.
- When running any Fastlane lane on Windows that requires
sentry-cli
, bear in mind that sometimeswhich sentry-cli
is run.which
does not exist on Windows, but the similarly namedwhere
command does, so you can get around any errors stemming from this by aliasing the commandwhere
towhich
. - You need to install GitVersion yourself.
Below are some instructions on the MyRoboJackets Android release process. Note that you will need additional permissions on this repo and the MyRoboJackets Android Google Play application to fully carry out this step:
- Permission on this repo to run
workflow_dispatch
workflows (write access) - Permissions on the MyRoboJackets Android Google Play app. At a minimum:
Release apps to testing tracks
Release to production, exclude devices, and use Play App Signing
App releases don't have to perfectly coincide with PRs being merged, especially if two PRs are merged in close proximity. Our GitHub Actions workflows automatically handle building, signing, and uploading production releases of the app.
- After you've merged all PRs to be included in the release, open the Release to Internal Test Github Actions pipeline.
- Find the
Run workflow
button. Use the table below to select a value for theupdate_priority
. The update priority affects if and how often users receive in-app update prompts to update the app to the latest version.
Update priority | Description | Examples |
---|---|---|
1 | Optional update with prompts when the update is first available, then every 8 days. | UI touchups that don't impact functionality, releases with options to opt-in to beta features |
3 | Optional update with prompts when the update is first available, then every 4 days. | Medium-priority bug fixes, performance improvements, new features |
5 | Required update with immediate prompt and no option to decline. | Crashes/bugs impacting major features, urgent vulnerabilities |
- If the build runs successfully, you'll find a new draft release on the Internal Test track in Google Play.
At this point, you should do some small QA efforts to verify the new build. Post in #apiary-mobile
to have some people help you test. Note that access to the internal test track must be granted via
the Google Play Console.
- Internal testers may need to uninstall the app to see the update if it was recently published.
- If no issues are found, it's time to release! Promote the build to the Production track in Google Play, add release notes, and save the release.
- Google Play typically spends a day or two reviewing the release, then makes it available. In general, expect it to take at least ~24 hours for a production release to be available to users.