diff --git a/README.md b/README.md index a35b89a..1cd28fa 100644 --- a/README.md +++ b/README.md @@ -6,18 +6,6 @@ BP Logger is a Flutter app that allows you to keep track of your BP by logging i To use BP Logger, you must first sign in with Google. Then BP Logger will use your Google account to access your Google Drive (with your permission). After that, BP Logger can add the date, time, diastolic, and systolic values to a GSheets file called log. -## Building - -If you want to install the app by building from source: - -- Install Dart and Flutter SDK on your computer, they're pretty large in size -- Download the source files using `gh repo clone theRookieCoder/bp_logger` -- `cd` into the source folder -- Connect your Android or iPhone using a usb cable (or wirelessly if you know how to do that) -- Check that Flutter can see your phone by running `flutter devices` -- Run `flutter run --release` -- If you run into issues, try running `flutter doctor` and seeing if that helps - ## Installing Currently, BP Logger is not available in any app stores and hence has to sideloaded. @@ -62,3 +50,11 @@ There are 2 ways of sideloading. The easiest is using AltStore - It should install and as long as your iPhone is connected to your computer once a week, it should renew You can also the variety of other method, such as [this](installonair.com) website, or building from source + +### From source + +> You will need a Mac for building on iOS + +- Install Dart and Flutter +- Clone this repository +- Connect your device, make sure Flutter can pick it up, and run `flutter run --release` diff --git a/ios/build/XCBuildData/BuildDescriptionCacheIndex-971d7343dfcc9e1a0756d86c31095cb8 b/ios/build/XCBuildData/BuildDescriptionCacheIndex-971d7343dfcc9e1a0756d86c31095cb8 index 9291085..829c84a 100644 Binary files a/ios/build/XCBuildData/BuildDescriptionCacheIndex-971d7343dfcc9e1a0756d86c31095cb8 and b/ios/build/XCBuildData/BuildDescriptionCacheIndex-971d7343dfcc9e1a0756d86c31095cb8 differ diff --git a/ios/build/XCBuildData/build.db b/ios/build/XCBuildData/build.db index 8b2c301..6a096d3 100644 Binary files a/ios/build/XCBuildData/build.db and b/ios/build/XCBuildData/build.db differ diff --git a/makefile b/makefile index 32912ae..eb07e70 100644 --- a/makefile +++ b/makefile @@ -1,15 +1,12 @@ .PHONY: all build clean -test: - flutter run --release - clean: flutter clean rm -vrf Payload rm *.apk rm *.ipa -build: +release: flutter pub get flutter build apk flutter build ios