HTN '15 Mobile Interview Challenge
Native Android mobile application buillt of which displays HTN attendee profile data on a map with real-time pins base off user info.
<img src="https://github.com/Mrez95/HTN-Hackers/blob/master/app/src/main/res/drawable/11004014_944324105579755_773804323_n.jpg" alt="Drawing" width=350" height="595" style="float:right"/>
- Is the base specification implemented?
- Have you used appropriate networking, JSON, etc. libraries in retrieving data from Firebase?
- Is the UI performant? For the list, is scrolling smooth despite loading images from the network? For the map, is drawing all the elements onto the map smooth despite there being more than 1200 of them?
We have 1200+ fake user profiles complete with geographic information and skills listings located at https://htn15-interviews.firebaseio.com/.json. The JSON schema is:
{
“name”: <string>,
“picture”: <string>
“company”: <string>,
“email”: <string>,
“phone”: <string>,
“latitude”: <float>,
“longitude”: <float>,
“skills”: [
{
“name”: <string>,
“rating”: <float>
}
]
}- Firebase REST API
- Google Maps API
- GSON
- POJO
- JSON
Pull repository and build on local machine.
Copyright (c) 2015 Eddie Zhang.