A cup of coffee is not the same anymore then back in the 80's, thats why I wanted to build a tool for the coffee community.
Coffee has been grown to like the new "black gold", more roasters and more tools outside are growing.
Apart from the mechanical tools like grinders, portafilters etc, the app stores are pretty full of coffee apps.
But none is taken care about the community needs are open source and neither grew up from the own coffee fascination like on my side.
Thats why I build and maintain the Beanconqueror app for you, for me, for every coffee lover outside there.
Download today, track your brews, change your recipes, to get the best tasting cup of coffee you've ever had.
| Website | Instagram | Facebook |
- German: iphone-ticker wuv
- German: Kaffee-Netz
- English: Home-Barista
- Dutch tweakers koffiepraat
- Greek: greekespresso
- Turkish: kahvekulubu
On January 2021, the app got a bit hyped, through german featuring articles, the top rankings because of this you find below.
Top charts: Eat & Drink - Rank 5 Eat & Drink Ranking - Rank 70
Eat & Drink Raking - Rank 36
Different features are supported by this app, a brief overview you'll find here.
- Add your own beans / grinders / preparation methods
- Record different brew-parameters like:
- grind size
- grind amount
- brew time
- first coffee drip
- images
- etc.
- Manage your own workflow, first grind amount, then grind size? No problem
- Archive old beans / grinders / preparation methods
- Rate your brews
- Cup your brews by SCA
- Own roasting section
- Own water section
- Cup your brews by aromatics or flavors
- Connect smart scales (Decent Scale, Acaia Lunar, Hiroia Jimmy, Felicita)
- Nicola for giving the app a whole new design.
- Frank for translating the app into spanish.
- Halil Portakal for Turkish translation
- Jiageng Ding for Chinese translation
The App is a cross platform application, running on the ionic framework.
Download the latest version here.
If you don't want to download the app by playstore, just have a look on the release page.
Download the latest version here.
You want to support me, to access more people to explore the world of good coffee
Or sponsor me via Github
Thanks! ❤️
Before continuing it is important to note that Beanconqueror is open source available.
I welcome pull requests, but you will be required to sign the Beanconqueror CLA before any contributions can be merged.
Sadly there are some issues to read/use files from external storage apache/cordova-plugin-file#350
iOS filesystem is different then on Android, because of this images cannot just be exported. Thats why just Android is support by now.
You can backup Beanconqueror via iCloud, with this you can transfer all data to another device without any loss.
All tracked data/analytics are visible here:
The app needs access to your filesystem aswell as the camera
- Filesytem: Needed to save images which you took on beans/brews etc or exporting your settings.
- Camera: Needed to take picures or access the photo library to set images for your beans/brews
- Internet: NOT NEEDED! But needed if you want to send me some analytics information to make the app better :)
- GPS: NOT NEEDED! Activated through settings, saves the brew location
- Apple Health: NOT NEEDED! Activated through settings, saves caffeine amount
- Wake look: NOT NEEDED! Activated through settings, won't let your phone get into sleep mode while brewing
- Bluetooth: NOT NEEDED! Activated for smart scale use.
If you're not familiar with Ionic or Cordova read through the introduction. To get started with anything you need Node.js installed
https://sonarcloud.io/dashboard?id=graphefruit_Beanconqueror
npm install -g [email protected] npm install -g @ionic/cli npm run prepare
ionic cordova build ios
ionic cordova build android
npm outdated
cordova-check-plugins
Don't use NPM V 7 right now, 6.14.11 works fine
ionic cordova platform add [email protected]
ionic cordova platform add [email protected]
npm install @ionic/[email protected]
-> Or the actual active version
https://stackoverflow.com/questions/50419286/install-android-app-bundle-on-device brew install bundletool bundletool build-apks --bundle=./app.aab --output=./app.apks bundletool install-apks --apks=app.apks
#Overwrite plugin.xmls After SDK Target 31 needs to be supported, and older plugins doesn't have the android-export flag, we need to add them ourself...
Cordova-plugin-x-socialsharing
<receiver android:name="nl.xservices.plugins.ShareChooserPendingIntent" android:exported="false" android:enabled="true">
cordova-plugin-telerik-imagepicker
<activity android:exported="false" android:label="@string/multi_app_name" android:name="com.synconset.MultiImageChooserActivity" android:theme="@style/Theme.AppCompat.Light">
fttx-phonegap-plugin-barcodescanner
<activity android:name="com.google.zxing.client.android.encode.EncodeActivity" android:exported="false" android:label="Share"/>
cordova-plugin-file/src/android
ContentFileSystem.java
-> Temp fix for import
String encodedPath = inputURL.uri.getEncodedPath(); String authorityAndPath = encodedPath.substring(encodedPath.indexOf(this.name) + 1 + this.name.length() + 2);