Game that is heavy on Geocoding & GPS use.

We are looking for a programmer in the US Only. 

Our application must be designed Iin Corona SDK. No exceptions

Our app. Must be ported to all Apple Products (iphones and ipads) All android products (phones and tablets ). It will also need to be compiled for windows mobile as soon as Corona Skd makes it available (which should be before final product is ready)

Application is server side dependent so programmer must be able to handle this aspect as well. We will provide the server for final rollout. Developer may use their own server for app development and testing if they choose.

Users must be able to create an account or use Facebook to register 

App uses geocoding & GPS  as a main function. Multiple Devices location must be trackable at all times. 

App must be able to access Google maps and show other device location on map.

Application must be able to determine if other applicable devices are within a certain geographical radius.

App uses the camera for capturing both photo and video

both photos and videos will be posted to server and facebook

App must be able to send emails and SMS messages from within the app.

App must also be able to send status updates to Facebook. As well as be able to invite FB friends to join events from within the app

The backend server must be setup to allow our application support team to see all user information as well as suspend or edit accounts as well as events created by users

Graphics for the app GUI will not be provided. You must provide. App logo in all sizes and splash screen logo will be provided.

This project will be begin as soon as a developer is chosen. There is a sizable bonus for completion before deadline.

I think it is not possible to “send emails and SMS messages from within the app.” using Corona

@Renato, it is possible as we are doing it inside out tourism app. Here is some pseudo-code

SMS : 

                    local options =

                        {

                        body = “your string here”

                        }

                    native.showPopup( “sms”, options )

Email :

                    local options =

                        {

                        subject = “subject of the email”,

                        body = “body of the email”,

                        }

                    native.showPopup( “mail”, options)

That solution is not actually from within the app, since you are redirect to the oficial app outside your app :slight_smile:

Oh! you are right. I was too quick to answer. From my perspective there was a way but yeah it is not transparent within the  app.

I think it is not possible to “send emails and SMS messages from within the app.” using Corona

@Renato, it is possible as we are doing it inside out tourism app. Here is some pseudo-code

SMS : 

                    local options =

                        {

                        body = “your string here”

                        }

                    native.showPopup( “sms”, options )

Email :

                    local options =

                        {

                        subject = “subject of the email”,

                        body = “body of the email”,

                        }

                    native.showPopup( “mail”, options)

That solution is not actually from within the app, since you are redirect to the oficial app outside your app :slight_smile:

Oh! you are right. I was too quick to answer. From my perspective there was a way but yeah it is not transparent within the  app.