ecommerce

can i ask is developing ecommerce app like ebay possible with corona sdk?

yes, it is. be aware that much of that work would be server-side and would require something like Coronium.IO (http://coronium.io/) to handle user data etc.

is there any ecommerce app example?

Before you ask about developing it with XYZ platform, you really need to have thought out the ecommerce part first.  Thinking about the app first is putting the cart before the horse.   In software development, there is a pattern known as MVC - Model - View - Controller.  The Model is the database.  It’s how data is represented, defined, etc.  The View would be the app, how you show the data to the user and allow them to interact with the data.  The controller sits in between and manages things so you can change the database or the view and allows them to operate independently. 

But in the case of ecommerce, what are you selling? How do you get your product’s information into the database?  How do you you update inventory?  How do you interface with your billing system?  Do you have things in place to hook your billing system to a merchant account service?  Most likely your “controller” would need a well defined API that your app would need to talk to so it could get data to and from the controller.

Rob

yes, it is. be aware that much of that work would be server-side and would require something like Coronium.IO (http://coronium.io/) to handle user data etc.

is there any ecommerce app example?

Before you ask about developing it with XYZ platform, you really need to have thought out the ecommerce part first.  Thinking about the app first is putting the cart before the horse.   In software development, there is a pattern known as MVC - Model - View - Controller.  The Model is the database.  It’s how data is represented, defined, etc.  The View would be the app, how you show the data to the user and allow them to interact with the data.  The controller sits in between and manages things so you can change the database or the view and allows them to operate independently. 

But in the case of ecommerce, what are you selling? How do you get your product’s information into the database?  How do you you update inventory?  How do you interface with your billing system?  Do you have things in place to hook your billing system to a merchant account service?  Most likely your “controller” would need a well defined API that your app would need to talk to so it could get data to and from the controller.

Rob