Add README.md

This commit is contained in:
Brandon Presley 2022-07-07 18:08:25 +12:00
parent a0737a3613
commit 3cdd6aeea9
9 changed files with 50 additions and 1 deletions

3
.gitignore vendored
View File

@ -61,3 +61,6 @@ buck-out/
# Ruby / CocoaPods
/ios/Pods/
/vendor/bundle/
deploy.sh
README.pdf

45
README.md Normal file
View File

@ -0,0 +1,45 @@
# Massive
Massive tracks your reps and sets at the gym. No internet connectivity or high spec device is required.
<img src="images/home.png" height="300"/>
<img src="images/edit.png" height="300"/>
<img src="images/timer.png" height="300"/>
<img src="images/plans.png" height="300"/>
<img src="images/exercises.png" height="300"/>
<img src="images/settings.png" height="300"/>
# Installation
The easiest installation method on Android devices is to download [the APK](https://brandon.presley.nz/massive.apk).
# 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 bundleRelease
```
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
```

BIN
images/edit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

BIN
images/exercises.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

BIN
images/home.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

BIN
images/plans.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

BIN
images/settings.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

BIN
images/timer.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

@ -61,4 +61,5 @@
"node"
]
}
}
}