COVID-19-app-Android-BETA

Source code of the Beta of the NHS COVID-19 Android app

Github星跟踪图

NHS COVID-19 BETA for Android

License: MIT
Release: BETA

Vulnerability Reporting

If you believe you have found a security vulnerability, please read our vulnerability disclosure policy and submit your report to us at:
https://hackerone.com/nhscovid19app

Build setup

Some secrets need to be set for the build to run. Please DO NOT add them to the project's gradle.properties.
Required secrets are:

  • sonar.headerValue
  • sonar.analyticsKey
  • sonar.baseUrl

To set a property refer to official gradle documentation

Running tests

  1. Device setup

    Make sure all animations are turned off on the device (not an emulator) that is running the tests.
    https://developer.android.com/training/testing/espresso/setup#set-up-environment

    Also ensure that location access is enabled on the device.

  2. Before pushing code run -

    ./gradlew localBuild
    

    It is the default task, so you can also just run -

    ./gradlew
    

NOTE

  • PLEASE NEVER skip running the tests before pushing.
  • PLEASE NEVER disable tests.
  • PLEASE NEVER push code to master that knowingly breaks the test suite.

PACT tests

Pact contract tests are run as part of the regular unit test suite.
If one of the tests is failing, and you need more output,
set slf4j logging to debug: -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG

Are your pact tests failing with "problem accessing trust store"?

This is a sign that you are registering encryption provider in a test but are not de-registering it after. Pact will then try to create a client using the Apache SSLSocketFactory. This will in turn try to use the encryption provider as the certificate trust store, resulting in the error you see. To fix, de-register the encryption provider after use in tests.

Running tests on Firebase from your machine

Make sure your APKs are built -

./gradlew localBuild

You will need the gcloud CLI.
Once installed run:

./gradlew localBuild

gcloud init
gcloud config set project sonar-colocate
gcloud firebase test android run \
    --type=instrumentation \
    --app=app/build/outputs/apk/debug/app-debug.apk \
    --test=app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk \
    --device-ids=aljeter_n \
    --os-version-ids=26 \
    --use-orchestrator \
    --environment-variables=clearPackageData=true

Code formatting with KTLint

KTLint has been added to the build and will automatically run when you run the build.
It is attached to the check step of the build.

The official Kotlin style guide recommends slightly different configuration from the default
Android Studio setup.

  1. The continuation indent should be set to 4

    Continuation indent

  2. Imports should never use wildcards

    No wildcard import

  3. Files should end with a new line character.

    Ensure line feed on save

Play Store

  1. Make sure you have configured the following properties in ~/.gradle/gradle.properties

    SIGNING_KEY_ALIAS=<keystore alias>
    SIGNING_KEY_STORE=<path/to/keystore>
    SIGNING_KEY_STORE_PASSWORD=<keystore password>
    SIGNING_KEY_PASSWORD=<key password>
    PLAY_SERVICES_PUBLISH=<path/to/play-services.json>
    
  2. Update the release notes in app/src/main/play/release-notes/en-GB/default.txt

  3. To publish new release in internal test track, run following command in project root directory:

    ./gradlew publish -Pplay-enabled
    
  4. To prompt a release from internal track to alpha (stakeholder) track, run following command in project root directory:

    ./gradlew promoteArtifact -Pplay-enabled
    

NOTE

  • The build number will be set automatically. you don't need to change or commit it to git

Check Gradle Play Publisher for more info

主要指标

概览
名称与所有者ukhsa-collaboration/COVID-19-app-Android-BETA
主编程语言Kotlin
编程语言Dockerfile (语言数: 3)
平台
许可证MIT License
所有者活动
创建于2020-05-05 16:20:21
推送于2020-06-26 11:18:04
最后一次提交2020-06-26 12:18:03
发布数30
最新版本名称v1.3.0 (发布于 )
第一版名称v1.0.0 (发布于 2020-05-11 22:50:55)
用户参与
星数771
关注者数82
派生数148
提交数1.1k
已启用问题?
问题数39
打开的问题数0
拉请求数1
打开的拉请求数0
关闭的拉请求数12
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?