Your mobile fitness data analyzer app. https://encrateia.informatom.com/
This repository has been archived on 2024-03-27. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
Go to file
Stefan Haslinger 5738f16d9b updated readme 2020-04-20 10:05:29 +02:00
android consistently EnCrateia (no k) 2020-03-11 12:41:29 +01:00
assets/icons nontransparent icons for ios 2020-03-11 18:02:09 +01:00
captures list view styling, lap detail screen and metadata widget 2020-01-18 12:29:26 +01:00
ios first deployment to app store 2020-04-16 16:17:07 +02:00
lib there is no externalStorageDirectory for iOS, just ApplicationDocumentsDirectory 2020-04-16 16:18:29 +02:00
test app sceleton 2019-08-12 20:48:55 +02:00
.flutter-plugins-dependencies upgraded to using AndroidX, switched to VSCode 2019-12-29 21:06:28 +01:00
.gitignore do not version controll secrets 2019-08-16 16:45:17 +02:00
.metadata app sceleton 2019-08-12 20:48:55 +02:00
LICENSE Initial commit 2019-04-16 11:07:56 +02:00
README.md updated readme 2020-04-20 10:05:29 +02:00
pubspec.lock improvements on lap list layout 2020-03-17 15:36:48 +01:00
pubspec.yaml version 0.2.1 2020-04-16 16:19:01 +02:00

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