Cenko brings all deals from major Slovenian stores into one place so you always get the best price. Scan your receipts to automatically track your spending, and share shopping lists with family or friends to get personalized deal recommendations based on what you buy most.
Dragonhack 2026 - Best use of APIs reward
- Track spending - scan receipts to automatically track your spending and gain insights into your spending by store
- Browse all deals in one place - find the best deals across all major stores in Slovenia (Mercator, Spar, Hofer, Tuš and Tuš drogerija)
- Shared shopping list - create shopping lists and share them with family or friends and make sure you always get the best deal for the products on your list
- Personalized recommendations - get deal recommendations based on your shopping list and frequently bought products
- Flutter for cross-platform mobile development. State management with Riverpod and navigation with GoRouter
- Firebase for backend - authentication, Firestore and AI logic
- OCR with Gemini for structured data extraction
- Scraping grocery catalogs with Go, text extraction from PDFs with pdfplumber and data structuring with Claude Haiku
- Shared shopping lists - allow users to share shopping lists with family members or friends
- Support more stores - scrape catalogs of more stores
- Price tracking - track price changes of frequently bought products or shopping lists and notify users of significant price drops
- Better OCR and data extraction - improve the accuracy of receipt scanning and data structuring with more advanced LLMs
To run the app locally:
- Install depencides:
flutter pub get - Running in debug:
flutter run --debug - Release build: you will need
android/key.propertiesfile. Structure of this file can be found inexample-key.propertiesfile. To run the app in release mode run:
flutter run --release
To setup the development environment for Android:
- Install Android Studio
- Under Tools -> SDK Manager -> SDK Platforms install Android 16.0 ("Baklava")
- Under Tools -> SDK Manager -> SDK Tools install Android SDK Build-Tools, NDK (Side by side), Android SDK Command-line Tools (latest), CMake, Android Emulator and Android SDK Platform-Tools
- Create an enulator in Tools -> Device Manager.
Check if emaultor is installed by runningflutter emuatorsand run it viaflutter emulators --launch <emulator id> - Install FlutterFire and Firebase CLI:
npm install -g firebase-tools dart pub global activate flutterfire_cli echo 'export PATH="$PATH":"$HOME/.pub-cache/bin"' >> ~/.bashrc # add to PATH source ~/.bashrc firebase login flutterfire configure

