Any fitness goal is closely tied to the food you consume, so why should you have separate apps for tracking your progress in the gym and in the kitchen? The State of Health Tracking app offers an all-encompassing solution for tracking your macros and workouts.
At State of Health, we strive to simplify fitness. Our app is devoid of unnecessary features and is exceptionally user-friendly. It includes progressive overload tracking to ensure you add more reps or weight with each workout. Moreover, our app is seamlessly integrated with the USDA food database, enabling you to easily search for nearly any food item containing a label within the United States.
Our tracking app is loaded with comprehensive graphs, and charts to make sure you are on track every day to hit your goals. Each day you log a workout or meal, a diary entry will automatically be created for you to keep track of your progress.
This app assumes you are using Expo EAS and have a registered Apple Developer account.
To setup use with firebase:
.env.dist
and paste it as .env
USDA_FOOD_API_KEY=
in the .env file with your API Key.EAS builds will ignore files found in .gitignore. Because of this, you must remove .GoogleService-Info.plist
from the .gitignore to upload a build with EAS. Failing to do so will result in a failed build.
Run an iOS dev build on a simulator:
npm i
npm run ios
Run an iOS dev build on a physical device:
npm run build-ios-dev
to upload a dev build to EAS.npm run start
To debug crashlytics on a dev build, add a firebase.json file with the following to the root dir of the project:
{
"react-native": {
"crashlytics_debug_enabled": true,
"crashlytics_disable_auto_disabler": true,
"crashlytics_auto_collection_enabled": true,
"crashlytics_is_error_generation_on_js_crash_enabled": true,
"crashlytics_javascript_exception_handler_chaining_enabled": true
}
}
version
and buildNumber
inside the app.json file.npx expo run:ios
eas build --platform ios
. Submit to appstore connect with: eas submit -p ios