RoboJackets / apiary-mobile

Android app for MyRoboJackets attendance and merchandise distribution
https://play.google.com/store/apps/details?id=org.robojackets.apiary
Apache License 2.0
0 stars 0 forks source link
android hacktoberfest kotlin

apiary-mobile

The companion Android app for MyRoboJackets

Local development

Dependencies

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

Repository structure

There are 5 modules encompassing features and utilities.

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.

Dependency management

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 configuration

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).

Dependency injection

Hilt is used for dependency injection. The Hilt and Dagger annotations cheat sheet is a helpful resource.

Code linting

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.

Fastlane

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.

Additional Fastlane dependencies/notes

Release management

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:

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.

  1. After you've merged all PRs to be included in the release, open the Release to Internal Test Github Actions pipeline.
  2. Find the Run workflow button. Use the table below to select a value for the update_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
  1. 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.
    1. Internal testers may need to uninstall the app to see the update if it was recently published.
  2. 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.
  3. 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.