A lightweight Capacitor-based clicker app for Android. It lets you track anything you can count: habits, reps, inventory, you name it. Everything stays on your device, taps trigger haptic feedback, and you can export your counts via the native share sheet.
- Node.js 18+
- JDK 17+
- Android SDK & Command-line tools (ensure
ANDROID_HOMEis set)
-
Install dependencies:
npm install
-
Add Android platform:
npx cap add android
-
Build native icons and splash screens from the
assets/folder:npx @capacitor/assets generate --android
-
Sync the web frontend into the native project:
npx cap sync android
-
Compile the APK:
- Open the
android/directory in Android Studio and build from there, or - Run
npx cap build androiddirectly (Capacitor workflow, untested), or - You can also drop into
android/and run./gradlew assembleRelease(standard Gradle workflow, untested).
