Together is better! We believe that meeting with people and socializing should be easy. We designed MeetPoint to help you meet with people in real life. With only couple taps you let people know what activity you want to do and get together spontaneously.
- Facebook and Email login
- Geofence feature
- Create public / private activities
- Participate other activities
- Follow / Unfollow the users
- Push notification for user based actions
- Search
- Write comment
- Offline mode
- If you found a bug or have a feature request - open an issue.
- If you want to contribute - submit a pull request.
- iOS 10.3+
- Xcode 8.0+
- Swift 3.1+
$ git clone https://github.com/yusufkildan/MeetPoint.git
$ cd MeetPoint
$ pod install
- Open the Info.plist file and setup your
FacebookAppID
- Open the AppDelegate.swift and enter your Google Places api key(
GMSPlacesClient.provideAPIKey("ENTER YOUR API KEY HERE")
)
To create your own database please follow this steps:
- Go to the Firebase console
- Press
Create new project
and follow the instructions - Download
GoogleService-Info.plist
file and make sure the file name isGoogleService-Info-Development.plist
.Then add to the plist file to project(add to Support folder). - Set the
Database Rules
as follows:
{
"rules": {
".read": true,
".write": "auth != null",
"NearMe": {
// Allow anyone to read the GeoFire index
".read": true,
// Index each location's geohash for faster querying
".indexOn": ["g"],
// Schema validation
"$key": {
// Allow anyone to add, update, or remove keys in the GeoFire index
".write": true,
// Key validation
".validate": "newData.hasChildren(['g', 'l'])",
// Geohash validation
"g": {
".validate": "newData.isString() && newData.val().length <= 22 && newData.val().length > 0"
},
// Location coordinates validation
"l": {
"0" : {
".validate": "newData.isNumber() && newData.val() >= -90 && newData.val() <= 90"
},
"1" : {
".validate": "newData.isNumber() && newData.val() >= -180 && newData.val() <= 180"
},
"$other": {
".validate": false
}
},
// Don't allow any other keys to be written
"$other": {
".validate": false
}
}
}
}
}
- Choose
Authentication
from left menu and enable Facebook and Email Sign-In providers
Note: To send and receive push notification upload your APNs Certificates to Firebase and Deploy Firebase Cloud Functions to your project.
And finally open MeetPoint.xcworkspace and run the app
MeetPoint is licensed under Apache License 2.0. See LICENSE for details.
Yusuf KILDAN, kildanyusuf@gmail.com