Track your gym progress, completely offline.
Go to file
Brandon Presley ee6cef63ee Remove date editing from SetForm
It looks so messy, and adding libraries to deal with dates
is simply bloat.
2022-09-03 15:26:10 +12:00
.bundle First commit 2022-06-30 18:50:52 +12:00
.yarn/releases Fix .gitignore for yarn berry 2022-08-26 17:03:44 +12:00
android Set versionCode=36008 2022-09-02 12:34:55 +12:00
ios Run prettier on project directory 2022-09-01 23:52:33 +12:00
metadata/en-US Move images to comply with fastlane supply 2022-08-27 15:51:51 +12:00
.buckconfig First commit 2022-06-30 18:50:52 +12:00
.eslintrc.js First commit 2022-06-30 18:50:52 +12:00
.gitignore Fix .gitignore for yarn berry 2022-08-26 17:03:44 +12:00
.prettierrc.js First commit 2022-06-30 18:50:52 +12:00
.rgignore Split out routes 2022-07-15 16:34:06 +12:00
.ruby-version First commit 2022-06-30 18:50:52 +12:00
.watchmanconfig Run prettier on project directory 2022-09-01 23:52:33 +12:00
.yarnrc.yml Upgrade yarn version 2022-07-19 16:24:05 +12:00
app.json Run prettier on project directory 2022-09-01 23:52:33 +12:00
App.tsx Prevent race condition with database migrations 2022-08-30 23:21:25 +12:00
babel.config.js Remove console logs from production 2022-07-09 12:49:07 +12:00
best.ts Add graphs 2022-07-09 00:11:10 +12:00
BestList.tsx Add script to organize all imports 2022-09-02 12:33:53 +12:00
BestPage.tsx Fix drawer title when going back on Best 2022-07-11 13:06:16 +12:00
Chart.tsx Add picker for best charts 2022-09-02 12:24:28 +12:00
ConfirmDialog.tsx Add script to organize all imports 2022-09-02 12:33:53 +12:00
db.ts Add show images setting 2022-09-01 13:06:49 +12:00
DrawerMenu.tsx Prevent race condition with database migrations 2022-08-30 23:21:25 +12:00
EditPlan.tsx Add script to organize all imports 2022-09-02 12:33:53 +12:00
EditSet.tsx Prevent race condition with database migrations 2022-08-30 23:21:25 +12:00
EditWorkout.tsx Make image bigger in EditWorkout 2022-09-02 12:46:04 +12:00
Gemfile First commit 2022-06-30 18:50:52 +12:00
HomePage.tsx Show list of current workouts when adding set 2022-08-24 15:36:49 +12:00
index.js Switch some modals to dialogs and fix light mode 2022-07-06 21:03:56 +12:00
install.sh Add shell script to assemble and install apk 2022-08-22 18:45:21 +12:00
LICENSE Add GPL3 license 2022-07-08 11:59:31 +12:00
MassiveFab.tsx Style color of fab based on theme 2022-09-01 13:12:16 +12:00
MassiveInput.tsx Add date editing to Massive input 2022-09-01 13:59:06 +12:00
MassiveSwitch.tsx Change color scheme 2022-08-26 13:54:51 +12:00
metro.config.js First commit 2022-06-30 18:50:52 +12:00
organize.sh Add script to organize all imports 2022-09-02 12:33:53 +12:00
package.json Add picker for best charts 2022-09-02 12:24:28 +12:00
plan.ts Add workouts page 2022-08-26 15:10:28 +12:00
PlanItem.tsx Add script to organize all imports 2022-09-02 12:33:53 +12:00
PlanList.tsx Add script to organize all imports 2022-09-02 12:33:53 +12:00
PlanPage.tsx Make plans use stack navigation 2022-07-11 12:28:30 +12:00
progress.ts Add progress to plans 2022-07-07 12:45:45 +12:00
README.md Move images to comply with fastlane supply 2022-08-27 15:51:51 +12:00
release.sh Turn on proguard and separate build per cpu 2022-07-27 16:06:28 +12:00
Routes.tsx Add script to organize all imports 2022-09-02 12:33:53 +12:00
set.ts Add images to sets 2022-08-28 20:55:12 +12:00
SetForm.tsx Remove date editing from SetForm 2022-09-03 15:26:10 +12:00
SetItem.tsx Add script to organize all imports 2022-09-02 12:33:53 +12:00
SetList.tsx Prevent errors when no sets are recorded today 2022-09-03 14:50:54 +12:00
settings.ts Add show images setting 2022-09-01 13:06:49 +12:00
SettingsPage.tsx Put rest minutes & seconds on the same row 2022-09-02 14:01:25 +12:00
time.ts Use stack navigation for Best 2022-07-11 13:00:17 +12:00
tsconfig.json Delete unused libraries 2022-08-24 12:01:54 +12:00
ViewBest.tsx Rename "Best volume per day" to "Volume per day" 2022-09-02 13:55:18 +12:00
workout.ts Add workouts page 2022-08-26 15:10:28 +12:00
WorkoutItem.tsx Add script to organize all imports 2022-09-02 12:33:53 +12:00
WorkoutList.tsx Add script to organize all imports 2022-09-02 12:33:53 +12:00
WorkoutMenu.tsx Fix all lint errors 2022-07-09 13:48:45 +12:00
WorkoutsPage.tsx Add workouts page 2022-08-26 15:10:28 +12:00
write.ts Show notification on file downloads 2022-08-25 20:00:10 +12:00
yarn.lock Add picker for best charts 2022-09-02 12:24:28 +12:00

Massive

Massive tracks your reps and sets at the gym. No internet connectivity or high spec device is required.

Features

  • Track weight, reps and sets
  • Rest timers after each set
  • Progress graphs
  • Day planner
Get it on Google Play

Screenshots

Building from Source

First follow the React Native Environment Setup. Then run the following command:

cd android
./gradlew assembleRelease

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