Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.85 KB

File metadata and controls

27 lines (22 loc) · 1.85 KB

Build status codecov Code Style

BlockCOVID-android

Description

Android module for the project BlockCOVID. This module provides the Android application used by the users and cleaners to reserve a desk and clean rooms.

Usage

Prerequisites

This module requires an instance of the server module running. By default the app tries to redirect all api requests to "http://192.168.210.30:8091", you should change the default url inside NetworkClient.kt for the app to work properly.

Building and running

For building and running instructions, refer to the section "Installazione" of the Android Developer Manual.

Contributing

We adopt a Gitflow workflow. So in order to contribute to the application the steps are:

  • start from develop branch
  • git flow feature start [feature name] (alternatively git checkout -b feature/[feature name])
  • Implement the new feature and the corresponding tests
  • commit your changes
  • git flow feature publish [feature name] (alternatively git push -u origin feature/[feature name])
  • open a pull request describing your changes and addressing issues if necessary.

Eventually an administrator will review your work and merge it in the develop branch.