An Android app to track brewing time to drip coffee
- Set the amount of ground coffee beans in the input box at the top left,
- Set the roast of the coffee beans with the drop down menu at the top right,
- Tap the Start button at the bottom left, and
- Follow the instruction to pour hot water over the coffee dripper.
This privacy policy states use of information of the user by a software application, Coffee Drip Timer.
The application does not collect or store any information.
Copyright 2024 by Green Soybean Technologies, under MIT License.
- Make sure
const val waitDurationUnit
is60000L
inapp/src/main/java/com/edamametech/android/coffeedriptimer/ui/CoffeeDripTimerScreen.kt
. This can be lowered to, e.g.,5000L
for quicker debugging. - Remove unreferenced resources and debug logs.
- Update
android.defaultConfig.versionCode
and...versionName
inapp/build.gradle.kts
. - Test things on debug build, generate screenshots if necessary.
- Build - Generate Signed App Bundle or APK... and select release build.
- Rename the signed app bundle
app/release/app-release.aab
with the version, i.e.,X.Y.aab
. - Upload the signed app bundle to developer console, wait for quick checks to complete.
- Upload screenshots if necessary
- Tag the working copy:
git tag vX.Y
- Push changes to origin:
git push; git push origin tag vX.Y