diff --git a/.gitignore b/.gitignore index 344481b..5312711 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,6 @@ buck-out/ # Ruby / CocoaPods /ios/Pods/ /vendor/bundle/ + +deploy.sh +README.pdf diff --git a/README.md b/README.md new file mode 100644 index 0000000..adbbd9b --- /dev/null +++ b/README.md @@ -0,0 +1,45 @@ +# Massive + +Massive tracks your reps and sets at the gym. No internet connectivity or high spec device is required. + + + + + + + + +# 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 +``` diff --git a/images/edit.png b/images/edit.png new file mode 100644 index 0000000..6eb8f33 Binary files /dev/null and b/images/edit.png differ diff --git a/images/exercises.png b/images/exercises.png new file mode 100644 index 0000000..fd116bc Binary files /dev/null and b/images/exercises.png differ diff --git a/images/home.png b/images/home.png new file mode 100644 index 0000000..8c4ee0e Binary files /dev/null and b/images/home.png differ diff --git a/images/plans.png b/images/plans.png new file mode 100644 index 0000000..f4815ce Binary files /dev/null and b/images/plans.png differ diff --git a/images/settings.png b/images/settings.png new file mode 100644 index 0000000..c56ff79 Binary files /dev/null and b/images/settings.png differ diff --git a/images/timer.png b/images/timer.png new file mode 100644 index 0000000..4924a2e Binary files /dev/null and b/images/timer.png differ diff --git a/package.json b/package.json index c574657..be6655a 100644 --- a/package.json +++ b/package.json @@ -61,4 +61,5 @@ "node" ] } -} \ No newline at end of file +} +