Massive/README.md

58 lines
1.4 KiB
Markdown
Raw Normal View History

2022-07-07 06:08:25 +00:00
# Massive
Massive tracks your reps and sets at the gym. No internet connectivity or high spec device is required.
2022-07-26 00:38:56 +00:00
## Features
- Track weight, reps and sets
2022-07-26 00:38:56 +00:00
- Rest timers after each set
- Progress graphing
- Day planner
<a href='https://play.google.com/store/apps/details?id=com.massive&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'>
<img height="70" alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png'/>
</a>
2022-07-26 00:39:41 +00:00
# Screenshots
<img src="images/home.png" height="672"/>
<img src="images/edit.png" height="672"/>
<img src="images/timer.png" height="672"/>
<img src="images/plans.png" height="672"/>
<img src="images/plan-edit.png" height="672"/>
<img src="images/best.png" height="672"/>
<img src="images/best-view.png" height="672"/>
<img src="images/settings.png" height="672"/>
<img src="images/drawer.png" height="672"/>
2022-07-07 06:08:25 +00:00
# Building from Source
First follow the [React Native Environment Setup](https://reactnative.dev/docs/environment-setup). Then run the following command:
```sh
cd android
./gradlew assembleRelease
2022-07-07 06:08:25 +00:00
```
The apk file can be found at `./app/build/outputs/apk/release/app-release.apk`
# Running in Development
First ensure Node.js dependencies are installed:
```
yarn install
```
Then start the metro server:
```
yarn start
```
Then run the `android` script:
```
yarn android
```