SkillApp is a native time-tracking application for Android that focuses on simplicty.
- Different measurement units - hours, kilometers, times, pages (with reps, steps, calories, and kilograms coming soon)
- Skills can be organized into groups
- Dark theme
The app is available for download on Google Play.
The app is also planned to be released on F-Droid in the near future.
To build the project, do the following:
- Clone the repository
- Enter the directory the repository was cloned to.
- If the
$ANDROID_HOME
variable is not defined, you have 2 options:-
Define
$ANDROID_HOME
, .e.g. by addingexport ANDROID_HOME=/path/to/Android/Sdk/
to your~/.profile
-
Create the
local.properties
file inside the project root with the following contents:sdk.dir=/path/to/Android/Sdk
-
- If you want to perform a release build, add appropriate signing information to
buildSrc/src/main/kotlin/Signing.kt
. - Run
./gradlew assembleDebug
(for Linux and MacOS) orgradle assembleDebug
(for Windows). That will produce a debug APK.