SlideShare a Scribd company logo
Case Study
Loyalty Program

www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd

Page 1 of 7
Client

Requirement

The purpose is to develop a Loyalty Platform with Mobile Application
compatibility with all the mobile devices like iPhone, iPad, & Android and
a mobile website.
The System has three types of users:
•
•
•

Customers
Merchants and/or Banks
Super Admin

The application has the
following features:
•
•
•
•
•
•

Customers: Using this app, the customers can register their check-ins
and redeem their loyalty points for various business vendors available
through the platform. Customers can request for various offers based on
their keyword specific preferences via SMS. The users can also be able
to subscribe to the information using web and telecom services. In all
instances subscription delivery will ONLY be to mobile phones by means
of a text (SMS) message.
Business Vendor: There will be a web CMS for the business vendors to
manage their store offerings and communicate to the client with their
special offers, new collection invites, special incentives...etc. The
business vendors will also be able to track the loyalty stats of all their
customers.

•
•
•
•
•
•
•
•

Super Admin: There will be a web CMS for the Super Admin to manage
Application Business Model and the associated business vendors account
activeness. The customers using this app can sign up for various
merchants available in various categories.

•

At each merchant, the customer shall be Able to see his reward points,
see the offers specially crafted for him or offers, be able to see the
communication targeted directly towards him, and finally redeem the
reward points by being able to purchase directly from the app, by partial
or full redemption of his reward points.

•
•
•

Client required a cross platform mobile application and mcommerce website exposing consumers to multiple brands and
merchants allowing them to shop, avail offers, manage loyalty programs
and redeem coupons from this single application.

•
•

The app, its m-commerce and
information updated at all ends.
programs with banks and other
purchase from affiliates they get
preset policy.

web versions sync together to keep
The application also manages affiliate
stores. Whenever customer makes a
rewarded according to the merchant’s

•

This application is a collaborated platform for users to manage loyalty or
customer retention programs from all or selected merchants. Every field
of the application is dynamic and can be changed during the run time.
•
•

www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd

My Pocket
Offer & Coupons
Mobile Shop
Tell a Friend
Auto Search &
Suggestion
Shipping Price Setup
Per Product
CMS Pages
Development
Inventory
Management
Catalog Management
Import
Products/Export
Products
Product Price
Calculation
Order Management
Order Tracking
User-friendly yet
Captivating Mobile
Design
Dashboard that
shows a collaborated
view of the points
earned from multiple
merchants
One-tap points
redemption facility
Ability to check
merchant’s in-app
store
Multiple merchant
choices for users
Intuitive and
immersive user
interface
Facility to scan QR
code and Barcode of
membership cards
through mobile
devices
Interactive
subsequent
dashboard that
neatly manages
offers and coupons
from multiple
merchants
Carousel View
Ability to run on the
latest versions of iOS
& Android

Page 2 of 7
Project Challenges
Team faced the following challenge:
•
•
•
•
•
•
•

Managing dynamic fields of the application was a challenge especially dealing with animation for
card swapping was a huge challenging task.
Constant synchronization between the physical stores, website, m-commerce web application and
mobile app without affecting the performance was also a challenge.
Harmonizing the simultaneous execution of various integrated features and options while
maintaining consistency.
Creating an interface for manager at physical store to easily manage and update users’ mobile
account.
Smooth performance through carousel view.
Integration with SAP, ERP and Other Third Party Systems
Integration with POS System.

Technologies Used
Operating System &
Server Management

Development Tools &
Environments
Database

Red Hat Linux OS, Multi-Server Architecture with Staging &
Production Environment through Version Controlling releases, Server
Optimization, Security & SSL Implementation, Scheduler for Back-ups,
Alert Monitoring System Integration, Server Performance Tuning at
regular intervals, Software Firewall Configuration & Maintenance
PHP5+, Zend Studio, Magento, SQLite Framework, iOS SDK,
Android, XCode 4.2.1, Core Data Framework, Java Script, HTML5, CSS
etc.
MYSQL Database Server, SVN, DB Clustering, DB Optimization,
Master Slave Replication, Query Optimization, Scheduler for Backups

Manpower
Project Manager

2

Project Leader

2

Developers

4

Mobile Developers

4

Designers

2

QA

1

www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd

Page 3 of 7
Planning
The following development approach was adopted to equip the site with numerous
features and functionality:
•

Introducing high level of server and data fetching technology.

•

Research and analysis has been scheduled to get the actual level of output of data
which is in a form of different verticals and business logics.

•

Development – High Level Coding Standards has been followed for managing backup
data volume simultaneously synchronization with server for recent updates.

•

Precisely need to concentrate in sync with existing and newly available data for backup
with our database for result to get generated.

•

The User Interface Layer which forms the Graphical User Interface of the website.

Magento Architecture

www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd

Page 4 of 7
Mobile
•

Application Life Cycle

The application life cycle constitutes the sequence of events that occurs between the launch and
termination of your application. In iPhone/iPad OS, the user launches the application by tapping its
icon on the Home screen. Shortly after the tap occurs, the system displays some transitional
graphics and proceeds to launch your application by calling its main function. From this point on,
the bulk of the initialization work is handed over to UIKit which loads the application’s user
interface and readies its event loop. During the event loop, UIKit coordinates the delivery of events
to your custom objects and responds to commands issued by your application. When the user
performs an action that would cause your application to quit, UIKit notifies your application and
begins the termination process.
The following figure depicts the simplified life cycle of an iPhone application. This diagram shows the
sequence of events that occur from the time the application starts up to the time it quits. At
initialization and termination, UIKit sends specific messages to the application’s delegate object to
let it know what is happening. During the event loop, UIKit dispatches events to your application’s
custom event handlers.
Figure: Application life cycle

•

Event Handling Cycle

After the UI Application main function initializes the application it starts the infrastructure needed to
manage the application’s event and drawing cycle which is depicted in the following figure. As the
user interacts with a device, iPhone/iPad OS detects touch events and places them in the
events
application’s event queue. The event
event-handling infrastructure of the UI Application object takes each
event off the top of this queue and delivers it to the object that best suited to handle it. For
example, a touch event occurring in a button would be delivered to the corresponding button object.
Events can also be delivered to controller objects and other objects indirectly responsible for
handling touch events in the application.
nts

www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd

Page 5 of 7
Figure: The event and drawing cycle

In the iPhone OS Multi-Touch event model, touch data is encapsulated in a single event object
Touch
(UI Event). To track individual touches, the event object contains touch objects (
).
(UI Touch) one
for each finger that is touching the screen. As the user places fingers on the screen, moves them
around and finally removes them from the screen, the system reports the changes for each finger
in the corresponding touch object.
When it launches an application, the system creates both a process and a sing thread for that
single
application. This initial thread becomes the application’s main thread and is where the UI
ecomes
Application object sets up the main run loop and configures the application’s event
event-handling
code. Figure shows the relationship of the event handling code to the main run loop. Touch
event-handling
events sent by the system are queued until they can be processed by the application’s main run
loop.

www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd

Page 6 of 7
Development Highlights
The project is developed using Magento open source due to the online selling store nature of
the website. The application is built for multiple platforms including iOS and Android. The
application runs on the latest versions of iOS and Android. Almost all the modules are
developed using foundation, core graphics and UIKIT frameworks. All the user interface items
are placed in view controllers that are linked with the controller files project along with the
outlets, actions of the UI element. Geo-fencing technology was used at different stages.
Integration of various 3rd party tools was required. The site was developed and fully functional
within a span of 9 months.

www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd

Page 7 of 7

More Related Content

PDF
Gps based search coupons on map view ios, android mobile application
Mike Taylor
 
PPT
Case study on Movie Quiz App For IPhone and IPad – Facebook Enabled
Grey Matter India Technologies PVT LTD
 
PDF
online shopping
Kanan Farhat
 
PDF
Workflow automation i phone application for a construction company
Mike Taylor
 
PDF
Mobile app development converted
Sandy Gupta
 
PDF
Payments in Mobile Apps
Cleveroad
 
PPTX
Importance of Mobile App Architecture For Mobile App Development
Helios Solutions
 
PPTX
CSE Final Year Project Presentation on Android Application
Ahammad Karim
 
Gps based search coupons on map view ios, android mobile application
Mike Taylor
 
Case study on Movie Quiz App For IPhone and IPad – Facebook Enabled
Grey Matter India Technologies PVT LTD
 
online shopping
Kanan Farhat
 
Workflow automation i phone application for a construction company
Mike Taylor
 
Mobile app development converted
Sandy Gupta
 
Payments in Mobile Apps
Cleveroad
 
Importance of Mobile App Architecture For Mobile App Development
Helios Solutions
 
CSE Final Year Project Presentation on Android Application
Ahammad Karim
 

What's hot (11)

PDF
The mobile opportunity: what every business leader needs to know
Robosoft Technologies
 
PDF
IBM Royal cyber- Mobile Solutions
Talha Haroon
 
PDF
Mobile based online tv guide
Mike Taylor
 
PDF
App cloud-mobile-solutions-guide
CMR WORLD TECH
 
PDF
iPhone first App Store submission
Pragati Singh
 
DOCX
Food delivery application report
AshwinBicholiya
 
PDF
Session 9-10 - UI/UX design for iOS 7 application
Vu Tran Lam
 
PDF
Measuring and Optimising Apps using Google Mobile App Analytics
Cemal Buyukgokcesu
 
PPT
IBM Mobile Quality Assurance - Open Beta Study Group Session 2
Roger Snook
 
PPT
Obc librarize demo deck
nklein14
 
PPT
All about Apple Watchkit
Ketan Raval
 
The mobile opportunity: what every business leader needs to know
Robosoft Technologies
 
IBM Royal cyber- Mobile Solutions
Talha Haroon
 
Mobile based online tv guide
Mike Taylor
 
App cloud-mobile-solutions-guide
CMR WORLD TECH
 
iPhone first App Store submission
Pragati Singh
 
Food delivery application report
AshwinBicholiya
 
Session 9-10 - UI/UX design for iOS 7 application
Vu Tran Lam
 
Measuring and Optimising Apps using Google Mobile App Analytics
Cemal Buyukgokcesu
 
IBM Mobile Quality Assurance - Open Beta Study Group Session 2
Roger Snook
 
Obc librarize demo deck
nklein14
 
All about Apple Watchkit
Ketan Raval
 
Ad

Similar to Loyalty & Rewards Points Application on your mobile, iPhone, Android (20)

PDF
Loyalty & Rewards Points Application on your mobile phone, iPhone, Android
Mike Taylor
 
PDF
Free advertising platform for businesses with IOS & Android Apps development
Mike Taylor
 
PDF
Free advertising platform for businesses with IOS & Android Apps development
Mike Taylor
 
PDF
Application for Data Sync Between Different geo Locations
Mike Taylor
 
PDF
Community App for Promoting Cross-Cultural Interaction
Mike Taylor
 
PDF
Community App for Promoting Cross-Cultural Interaction
Mike Taylor
 
PDF
Real-time Text Audio to Video PPT Converter Tablet App
Mike Taylor
 
ODP
Case study for free advertising platform for businesses with ios & android ap...
Mike Taylor
 
PDF
Mobile Application Development: A Step-by-Step Guide
xiconetseo
 
PDF
Embedded Systems.pdf
ruvabebe
 
PDF
Password security system for websites
Mike Taylor
 
PPT
Case study on tablet application for real time video, audio and ppt conversion
Grey Matter India Technologies PVT LTD
 
PDF
Incidence Tracking System for Media Companies - Times Group
Mike Taylor
 
DOC
Mayank_Gupta
Mayank Gupta
 
PDF
Mobile based online tv guide
Mike Taylor
 
PDF
In-Flight Infotainment and e-Shopping App | iPad App for shopping
Mike Taylor
 
PDF
Mobile App Development_ Process, Tools, and Frameworks.pdf
Nevina Infotech
 
DOC
Jinto_Resume_latest
Jinto Antony
 
PDF
Kony Mobility Platform
Veeresh Nirni
 
PDF
Steps to Create a Fintech App for Mobile Users
Shiv Technolabs Pvt. Ltd.
 
Loyalty & Rewards Points Application on your mobile phone, iPhone, Android
Mike Taylor
 
Free advertising platform for businesses with IOS & Android Apps development
Mike Taylor
 
Free advertising platform for businesses with IOS & Android Apps development
Mike Taylor
 
Application for Data Sync Between Different geo Locations
Mike Taylor
 
Community App for Promoting Cross-Cultural Interaction
Mike Taylor
 
Community App for Promoting Cross-Cultural Interaction
Mike Taylor
 
Real-time Text Audio to Video PPT Converter Tablet App
Mike Taylor
 
Case study for free advertising platform for businesses with ios & android ap...
Mike Taylor
 
Mobile Application Development: A Step-by-Step Guide
xiconetseo
 
Embedded Systems.pdf
ruvabebe
 
Password security system for websites
Mike Taylor
 
Case study on tablet application for real time video, audio and ppt conversion
Grey Matter India Technologies PVT LTD
 
Incidence Tracking System for Media Companies - Times Group
Mike Taylor
 
Mayank_Gupta
Mayank Gupta
 
Mobile based online tv guide
Mike Taylor
 
In-Flight Infotainment and e-Shopping App | iPad App for shopping
Mike Taylor
 
Mobile App Development_ Process, Tools, and Frameworks.pdf
Nevina Infotech
 
Jinto_Resume_latest
Jinto Antony
 
Kony Mobility Platform
Veeresh Nirni
 
Steps to Create a Fintech App for Mobile Users
Shiv Technolabs Pvt. Ltd.
 
Ad

More from Mike Taylor (20)

PDF
Latest trends for mobile apps development
Mike Taylor
 
PDF
Features of B2C Travel eCommerce system
Mike Taylor
 
PDF
Steps to Grow Your eCommerce Business
Mike Taylor
 
PPTX
Reasons to choose php for web application development
Mike Taylor
 
PPTX
Unique Shopoping Experience with eCommerce Gamification Extension
Mike Taylor
 
PDF
Android Application Development with Apple's Swift Technology
Mike Taylor
 
ODP
New Amazing Things about AngularJS 2.0
Mike Taylor
 
PDF
Gamification - The Trending Things of eCommerce Business
Mike Taylor
 
ODP
Gamification - Enhance Customers shopping experience with latest Big things i...
Mike Taylor
 
ODP
Benefit of Web Application Development with Zend Framework
Mike Taylor
 
ODP
The Importance Things of Full Stack Development
Mike Taylor
 
PDF
Most useful features for windows 10 developer
Mike Taylor
 
ODP
Have a look Google next operating system update : Android Marshmallow
Mike Taylor
 
PDF
Top 20 Questions Ask Before Hire Android App Development Company
Mike Taylor
 
PPT
Multi vendor marketplace extension
Mike Taylor
 
PPT
25 Famous Websites using Wordpress
Mike Taylor
 
PPT
Bring Healthcare to fingertips - How Apps changed Medical Industry
Mike Taylor
 
PPT
Have you played this Symfony? Why Symfony is great choice for Web development
Mike Taylor
 
PPT
9 vitals in business websites
Mike Taylor
 
PPTX
How Technology Can Change Real Estate Industry In 2015
Mike Taylor
 
Latest trends for mobile apps development
Mike Taylor
 
Features of B2C Travel eCommerce system
Mike Taylor
 
Steps to Grow Your eCommerce Business
Mike Taylor
 
Reasons to choose php for web application development
Mike Taylor
 
Unique Shopoping Experience with eCommerce Gamification Extension
Mike Taylor
 
Android Application Development with Apple's Swift Technology
Mike Taylor
 
New Amazing Things about AngularJS 2.0
Mike Taylor
 
Gamification - The Trending Things of eCommerce Business
Mike Taylor
 
Gamification - Enhance Customers shopping experience with latest Big things i...
Mike Taylor
 
Benefit of Web Application Development with Zend Framework
Mike Taylor
 
The Importance Things of Full Stack Development
Mike Taylor
 
Most useful features for windows 10 developer
Mike Taylor
 
Have a look Google next operating system update : Android Marshmallow
Mike Taylor
 
Top 20 Questions Ask Before Hire Android App Development Company
Mike Taylor
 
Multi vendor marketplace extension
Mike Taylor
 
25 Famous Websites using Wordpress
Mike Taylor
 
Bring Healthcare to fingertips - How Apps changed Medical Industry
Mike Taylor
 
Have you played this Symfony? Why Symfony is great choice for Web development
Mike Taylor
 
9 vitals in business websites
Mike Taylor
 
How Technology Can Change Real Estate Industry In 2015
Mike Taylor
 

Recently uploaded (20)

PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PDF
The Future of Artificial Intelligence (AI)
Mukul
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
PDF
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
PDF
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
PDF
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PPTX
The Future of AI & Machine Learning.pptx
pritsen4700
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PPTX
Introduction to Flutter by Ayush Desai.pptx
ayushdesai204
 
PDF
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
PDF
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
PDF
Get More from Fiori Automation - What’s New, What Works, and What’s Next.pdf
Precisely
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
The Future of Artificial Intelligence (AI)
Mukul
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
The Future of AI & Machine Learning.pptx
pritsen4700
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
Introduction to Flutter by Ayush Desai.pptx
ayushdesai204
 
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
Get More from Fiori Automation - What’s New, What Works, and What’s Next.pdf
Precisely
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 

Loyalty & Rewards Points Application on your mobile, iPhone, Android

  • 1. Case Study Loyalty Program www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd Page 1 of 7
  • 2. Client Requirement The purpose is to develop a Loyalty Platform with Mobile Application compatibility with all the mobile devices like iPhone, iPad, & Android and a mobile website. The System has three types of users: • • • Customers Merchants and/or Banks Super Admin The application has the following features: • • • • • • Customers: Using this app, the customers can register their check-ins and redeem their loyalty points for various business vendors available through the platform. Customers can request for various offers based on their keyword specific preferences via SMS. The users can also be able to subscribe to the information using web and telecom services. In all instances subscription delivery will ONLY be to mobile phones by means of a text (SMS) message. Business Vendor: There will be a web CMS for the business vendors to manage their store offerings and communicate to the client with their special offers, new collection invites, special incentives...etc. The business vendors will also be able to track the loyalty stats of all their customers. • • • • • • • • Super Admin: There will be a web CMS for the Super Admin to manage Application Business Model and the associated business vendors account activeness. The customers using this app can sign up for various merchants available in various categories. • At each merchant, the customer shall be Able to see his reward points, see the offers specially crafted for him or offers, be able to see the communication targeted directly towards him, and finally redeem the reward points by being able to purchase directly from the app, by partial or full redemption of his reward points. • • • Client required a cross platform mobile application and mcommerce website exposing consumers to multiple brands and merchants allowing them to shop, avail offers, manage loyalty programs and redeem coupons from this single application. • • The app, its m-commerce and information updated at all ends. programs with banks and other purchase from affiliates they get preset policy. web versions sync together to keep The application also manages affiliate stores. Whenever customer makes a rewarded according to the merchant’s • This application is a collaborated platform for users to manage loyalty or customer retention programs from all or selected merchants. Every field of the application is dynamic and can be changed during the run time. • • www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd My Pocket Offer & Coupons Mobile Shop Tell a Friend Auto Search & Suggestion Shipping Price Setup Per Product CMS Pages Development Inventory Management Catalog Management Import Products/Export Products Product Price Calculation Order Management Order Tracking User-friendly yet Captivating Mobile Design Dashboard that shows a collaborated view of the points earned from multiple merchants One-tap points redemption facility Ability to check merchant’s in-app store Multiple merchant choices for users Intuitive and immersive user interface Facility to scan QR code and Barcode of membership cards through mobile devices Interactive subsequent dashboard that neatly manages offers and coupons from multiple merchants Carousel View Ability to run on the latest versions of iOS & Android Page 2 of 7
  • 3. Project Challenges Team faced the following challenge: • • • • • • • Managing dynamic fields of the application was a challenge especially dealing with animation for card swapping was a huge challenging task. Constant synchronization between the physical stores, website, m-commerce web application and mobile app without affecting the performance was also a challenge. Harmonizing the simultaneous execution of various integrated features and options while maintaining consistency. Creating an interface for manager at physical store to easily manage and update users’ mobile account. Smooth performance through carousel view. Integration with SAP, ERP and Other Third Party Systems Integration with POS System. Technologies Used Operating System & Server Management Development Tools & Environments Database Red Hat Linux OS, Multi-Server Architecture with Staging & Production Environment through Version Controlling releases, Server Optimization, Security & SSL Implementation, Scheduler for Back-ups, Alert Monitoring System Integration, Server Performance Tuning at regular intervals, Software Firewall Configuration & Maintenance PHP5+, Zend Studio, Magento, SQLite Framework, iOS SDK, Android, XCode 4.2.1, Core Data Framework, Java Script, HTML5, CSS etc. MYSQL Database Server, SVN, DB Clustering, DB Optimization, Master Slave Replication, Query Optimization, Scheduler for Backups Manpower Project Manager 2 Project Leader 2 Developers 4 Mobile Developers 4 Designers 2 QA 1 www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd Page 3 of 7
  • 4. Planning The following development approach was adopted to equip the site with numerous features and functionality: • Introducing high level of server and data fetching technology. • Research and analysis has been scheduled to get the actual level of output of data which is in a form of different verticals and business logics. • Development – High Level Coding Standards has been followed for managing backup data volume simultaneously synchronization with server for recent updates. • Precisely need to concentrate in sync with existing and newly available data for backup with our database for result to get generated. • The User Interface Layer which forms the Graphical User Interface of the website. Magento Architecture www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd Page 4 of 7
  • 5. Mobile • Application Life Cycle The application life cycle constitutes the sequence of events that occurs between the launch and termination of your application. In iPhone/iPad OS, the user launches the application by tapping its icon on the Home screen. Shortly after the tap occurs, the system displays some transitional graphics and proceeds to launch your application by calling its main function. From this point on, the bulk of the initialization work is handed over to UIKit which loads the application’s user interface and readies its event loop. During the event loop, UIKit coordinates the delivery of events to your custom objects and responds to commands issued by your application. When the user performs an action that would cause your application to quit, UIKit notifies your application and begins the termination process. The following figure depicts the simplified life cycle of an iPhone application. This diagram shows the sequence of events that occur from the time the application starts up to the time it quits. At initialization and termination, UIKit sends specific messages to the application’s delegate object to let it know what is happening. During the event loop, UIKit dispatches events to your application’s custom event handlers. Figure: Application life cycle • Event Handling Cycle After the UI Application main function initializes the application it starts the infrastructure needed to manage the application’s event and drawing cycle which is depicted in the following figure. As the user interacts with a device, iPhone/iPad OS detects touch events and places them in the events application’s event queue. The event event-handling infrastructure of the UI Application object takes each event off the top of this queue and delivers it to the object that best suited to handle it. For example, a touch event occurring in a button would be delivered to the corresponding button object. Events can also be delivered to controller objects and other objects indirectly responsible for handling touch events in the application. nts www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd Page 5 of 7
  • 6. Figure: The event and drawing cycle In the iPhone OS Multi-Touch event model, touch data is encapsulated in a single event object Touch (UI Event). To track individual touches, the event object contains touch objects ( ). (UI Touch) one for each finger that is touching the screen. As the user places fingers on the screen, moves them around and finally removes them from the screen, the system reports the changes for each finger in the corresponding touch object. When it launches an application, the system creates both a process and a sing thread for that single application. This initial thread becomes the application’s main thread and is where the UI ecomes Application object sets up the main run loop and configures the application’s event event-handling code. Figure shows the relationship of the event handling code to the main run loop. Touch event-handling events sent by the system are queued until they can be processed by the application’s main run loop. www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd Page 6 of 7
  • 7. Development Highlights The project is developed using Magento open source due to the online selling store nature of the website. The application is built for multiple platforms including iOS and Android. The application runs on the latest versions of iOS and Android. Almost all the modules are developed using foundation, core graphics and UIKIT frameworks. All the user interface items are placed in view controllers that are linked with the controller files project along with the outlets, actions of the UI element. Geo-fencing technology was used at different stages. Integration of various 3rd party tools was required. The site was developed and fully functional within a span of 9 months. www.brainvire.com | © 2013 Brainvire Infotech Pvt. Ltd Page 7 of 7