Skip to content

Commit c591a17

Browse files
committed
2 parents e64663f + 6d0fdd6 commit c591a17

File tree

1 file changed

+105
-0
lines changed

1 file changed

+105
-0
lines changed

README.md

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# Culinary Quest
2+
Speed Bazar is a grocery B2B and B2C business platform apps.
3+
4+
#### Some information Speed Bazar:
5+
Speed Bazar is the fastest growing online grocery shop in Bangladesh, which is committed to delivering quality products for the individuals, families as well as for the corporate customers in the easiest way for your daily, weekly, and monthly grocery Bazar and for your Grocery Shopping through Online. Speed Bazar delivers all kind of grocery items such as cooking items, beverage, bread & bakery, snacks, milk & dairy, beauty and body care, baby care, health care, home & cleaning items, stationery and many more daily needs to customers' doorstep as per their requirements by ensuring quality, faster and secure delivery [Here, Faster Means - just within I hour delivery] with reasonable prices. Customers enjoy various discounts and offer while shopping in Speed Bazar throughout the year.
6+
We are always ready to manage customers’ hassle regarding daily, weekly, and monthly grocery Bazar for Online Grocery Shopping with our own expertise to save your time, energy, and money. Speed Bazar is a fast and smart shop at your door. You can buy any grocery items from our online grocery shop [Speed Bazar] and get the fastest as well as the best online grocery delivery service experience on your Online Grocery shopping. Just take a breath and feel free to contact us. Customer satisfaction is our first priority.
7+
We are happy to help you.
8+
9+
#### Usage language, database & tools:
10+
* Android Studio
11+
* Java
12+
* Firebase real time & storage
13+
* Material UI
14+
15+
##### Speed Bazar Logo:
16+
17+
<p align="center" >
18+
<img src="https://user-images.githubusercontent.com/69858580/104105648-c6b40700-52d9-11eb-8873-d50b36603784.jpg" width="300" height="300" />
19+
</p>
20+
21+
##### Main Activity:
22+
23+
<p align="center" >
24+
<img src="https://user-images.githubusercontent.com/69858580/104105622-9b311c80-52d9-11eb-9fa6-55e5baad5550.jpeg" width="300" height="600" />
25+
</p>
26+
27+
##### Product Details:
28+
29+
<p align="center" >
30+
<img src="https://user-images.githubusercontent.com/69858580/104105669-e51a0280-52d9-11eb-905c-612d8c4dce7c.jpeg" width="300" height="600" />
31+
</p>
32+
33+
##### My Account/ Profile:
34+
35+
<p align="center" >
36+
<img src="https://user-images.githubusercontent.com/69858580/104105684-07ac1b80-52da-11eb-848a-a2578b6d3d68.jpeg" width="300" height="600" />
37+
</p>
38+
39+
##### Live Message With Admin:
40+
41+
<p align="center" >
42+
<img src="https://user-images.githubusercontent.com/69858580/104105692-185c9180-52da-11eb-8a7b-c4332f6f75c0.jpeg" width="300" height="600" />
43+
</p>
44+
45+
##### Show nearest Vendor or Distributor on Map:
46+
47+
<p align="center" >
48+
<img src="https://user-images.githubusercontent.com/69858580/104105704-28747100-52da-11eb-9a23-0f11bb28480e.jpeg" width="300" height="600" />
49+
</p>
50+
51+
52+
### APK
53+
+ key store path: E:\All programming File\speedbazar.jks
54+
+ key store password: speedbazar
55+
+ key alias: key0
56+
+ key password: speedbazar
57+
58+
# UpdateUserData From Firebase
59+
```javascript
60+
// where need to change edit there and change
61+
62+
private void updateUser() {
63+
64+
userRef.addListenerForSingleValueEvent(new ValueEventListener() {
65+
@Override
66+
public void onDataChange(DataSnapshot dataSnapshot) {
67+
68+
for (final DataSnapshot snapshot : dataSnapshot.getChildren()) {
69+
userRef.child(snapshot.getKey())
70+
.addListenerForSingleValueEvent(new ValueEventListener() {
71+
@Override
72+
public void onDataChange(DataSnapshot dataSnapshot) {
73+
Map<String, Object> postValues = new HashMap<String,Object>();
74+
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
75+
postValues.put(snapshot.getKey(),snapshot.getValue());
76+
}
77+
78+
postValues.put("isApprove", "No");
79+
postValues.put("vPanelAccess", "No");
80+
userRef.child(snapshot.getKey()).updateChildren(postValues);
81+
}
82+
83+
@Override
84+
public void onCancelled(DatabaseError databaseError) {}
85+
});
86+
}
87+
}
88+
@Override
89+
public void onCancelled(DatabaseError databaseError) {}
90+
});
91+
}
92+
```
93+
94+
# Our Contributors
95+
96+
<p align="left" >
97+
<img src="https://user-images.githubusercontent.com/69858580/104106061-ffa1ab00-52dc-11eb-8377-a0c520db2fe3.jpg" width="200" height="220" />
98+
<br> Akash Das
99+
<br> Android Developer | UX/UI Designer <br> <br>
100+
<img src="https://user-images.githubusercontent.com/69858580/104820791-7b61a180-5861-11eb-89e9-078fc88ec5a8.PNG" width="200" height="220" />
101+
<br> Niloy Sarker
102+
<br> Android Developer
103+
</p>
104+
105+

0 commit comments

Comments
 (0)