This project was developed during the 4th semester of EASV's Computer Science program as a final exam project for the Mobile Programming and Fullstack Development course.
Unpacked is a shopping list application that enables users to share and collaborate on their lists, as well as join pictures to their items. The application is built for mobile devices using Flutter, while utilizing Firebase tools for persistence.
- Register and sign in via Email and Password, or your Google account
- Create and share your shopping lists with others
- Add items to your shopping lists and let others know what you exactly need via attaching pictures
- Recieve a notification whenever a new item is added to you shopping list
- Install Flutter
- Install Android Studio
- Install Firebase Tools (globally)
- Set up an emulated device with a minimum SDK version of 21
- Acquire the file mp23-astr-firebase-adminsdk-3gl9w-984d3164ee.json
Clone the project
git clone https://github.com/RomanMeasv/mp23_astr
Go to the project directory
cd mp23_astr
Install dependencies
flutter pub get
Go to the functions folder
cd functions
Install dependencies
npm install
Put the file mp23-astr-firebase-adminsdk-3gl9w-984d3164ee.json into the directory
Navigate back to the root directory
cd ..
Start the emulator suite
firebase emulators:start
Start the application
flutter run
As the Firebase Auth Emulator does not support Google sign in, this feature is unavailable while using the emulators. The application has to be deployed for this feature to work.
If the application is relaunched after an emulator restart, the user will be logged out and the refresh token will be invalidated. This is due to the fact that the emulator does not persist the refresh token. To resolve this issue, the user has to log out and log in again.