A customer eccentric Android App of students for students, where they can make a sale, rent an item or buy products from other fellow students.
An android app, via which students of our institute (Indian Institute of Information Technology, Kalyani) can make a sale, rent or buy used products of other students. This app is developed keeping our institute in mind, thus one having institute alloted email id’s can only sign up and have a vantage!
The following instuctions will get you a copy of the project up and running on your local machine for development and testing purpose.
What things you need to install the software
1. Latest version of android studio should be set-up and running on your system.
2. Add Firebase to your project. (https://firebase.google.com/docs/android/setup)
3. And finally, an android device (or emulator) running on Jelly Bean or higher.
By now, you would have already downloaded the “google-services.json” file and connected your app to Firebase Server. Finally, to set the server side Authentication, Realtime Database and Storage provided by Google Firebase, follow the steps below:
com.google.firebase
16.0.4 : Firebase Core
com.google.firebase
16.0.3 : Realtime Database
com.google.firebase
16.0.3 : Storage
com.google.firebase
16.0.4 : Authentication
{
"rules": {
".read": "auth !== null",
".write": "auth !== null"
}
}
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if true;
}
}
}