✨ New Features: - Firebase Firestore integration for real-time household sharing - Create household → generates code stored in cloud - Join household → looks up code from Firebase across devices - Leave household → updates member list in cloud - Cloud-first with local Hive fallback for offline 🔧 Technical Implementation: - Added firebase_core and cloud_firestore dependencies - Created FirebaseHouseholdService for all cloud operations - Updated HouseholdScreen to use Firebase for create/join/leave - Modified gradle files to support Google Services plugin - Increased minSdk to 21 for Firebase compatibility - Version bumped to 1.1.0+2 (MAJOR.MINOR.BUGFIX) 📁 New Files: - lib/features/household/services/firebase_household_service.dart - FIREBASE_SETUP.md - Complete setup instructions - android/app/google-services.json - Placeholder (needs replacement) - android/app/README_FIREBASE.md - Firebase config reminder ⚙️ Setup Required: 1. Create Firebase project at console.firebase.google.com 2. Add Android app with package name: com.sage.sage 3. Download real google-services.json 4. Enable Firestore Database in test mode 5. See FIREBASE_SETUP.md for complete instructions 🎯 How it works: - Device A creates household → stored in Firestore - Device B joins with code → reads from Firestore - Both devices now share same household ID - Inventory items sync via shared household ID 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
655 B
Markdown
22 lines
655 B
Markdown
# Firebase Configuration Required
|
|
|
|
## ⚠️ IMPORTANT: Replace google-services.json
|
|
|
|
The current `google-services.json` file is a **PLACEHOLDER** and will **NOT** work.
|
|
|
|
### Steps to get your real google-services.json:
|
|
|
|
1. Follow the instructions in `/FIREBASE_SETUP.md` in the project root
|
|
2. Download the real `google-services.json` from Firebase Console
|
|
3. Replace the file in this directory: `android/app/google-services.json`
|
|
|
|
### Quick Link:
|
|
[Firebase Console](https://console.firebase.google.com/)
|
|
|
|
### Package Name (must match):
|
|
```
|
|
com.sage.sage
|
|
```
|
|
|
|
Without the real Firebase configuration file, household sharing will not work across devices!
|