Your mobile fitness data analyzer app. https://encrateia.informatom.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Haslinger Stefan (extern) e6352a33bc fix all build context warnings 1 month ago
android several config changes: app starts again 2 months ago
assets Ubuntu font, color schema, theme data, power zone and power zone schema management 3 years ago
captures list view styling, lap detail screen and metadata widget 3 years ago
files updated fit_parser dependency 3 years ago
ios upgraded several libaries, regenerated model.g, fixed more errors, only 1 warning left 1 year ago
lib fix all build context warnings 1 month ago
.flutter-plugins-dependencies fix all build context warnings 1 month ago
.gitignore bugfix: avgEcor not displayed. ios/Flutter/flutter_export_environment.sh kicked out of git repo 3 years ago
.metadata app sceleton 4 years ago
LICENSE Initial commit 4 years ago
README.md updated readme 3 years ago
_db.swcLong hide db from Event 3 years ago
analysis_options.yaml fix all build context warnings 1 month ago
changelog.txt switching to new linter package flutter_lints and fix the first warnings 1 year ago
create_changelog version bump to 0.4.9 and flutter upgrade 3 years ago
local.properties upgraded flutter and started to fix deprecations 2 years ago
pubspec.lock fixed sevaral warnings and deprecations 2 months ago
pubspec.yaml fixed sevaral warnings and deprecations 2 months ago

README.md

encrateia

tl;dr: Activity tracker data analysis app for Android and iOS

If you want to get back all your running, cycling, ... tracking data and analyse it yourself, this app could be interesting for you one day. Currently, we are in the beta stage.

There is a marketing site for Encrateia, which gives all the details about downloading, compatibility, the team and lots of screenshots.

License

Encrateia is GPL v3 licensed and will always stay open source software. Future versions in app/play stores will not be for free, but you will always be able to get the source code and build it yourself.

Instructions for Self-Compiling

If you want to compile Encrateia yourself, this is the way to go:

  • First you need to have Flutter (and Dart) installed for your operating system.

  • If you want to have Strava integration, i.e. downloads working, you need to get your own app token from Strava, because it's your app then. All the responsibilities using Strava's API are on your side then. See Strava's Authorization Documentation for details and how to request access.

  • You then need to create a file secrets.dart within /lib/secrets/ and enter your secret and client id:

    final String secret = "my_token_which_is_a_long_hex_string";
    final String clientId = "my_client_id_which_is_a_five_digit_integer";
    
  • If you don't care about Strava integration, you'll still need that file, just put in some dummy data for secret and client id:

    final String secret = "a1b2c3d4e5f6";
    final String clientId = "12345";
    

    Obviously, downloads from Strava won't work then.

  • I always forget how to split into apks by architecture, when compiling. This is, how it's done:
    flutter build apk --split-per-abi