SlideShare a Scribd company logo
End-to-end Mobile App
Development
@andri_yadi | http://andriyadi.com
codeMeetUp() - March 16, 2015
about me
CEO of
Co-founder of
http://jepret.in
7 years in a row
start up companies for 11 years
15 years in software development
I assume you’re all coders :)
Disclaimer
Develop end-to-end (server-driven)
mobile app?
develop the backend
1st you’ll do
a backend needs
Typically
Storage
Auth
Logic
Push
Typical Steps We’ll Take
Purchase a physical server or a VM
Install OS, Web Server, DB Server
Install & configure server-side scripting/runtime
(PHP, Node.js, Python, .NET, Java)


…and other fine tuning for performance, security
…1 - 2 days later, your server infra is up
Develop web API, authentication, push
notification
Backend
Typical Steps We’ll Take
1 - 2 weeks later, you have a mobile backend
and accessible API
Congratulation
Backend
Typical Steps We’ll Take
Prepare mobile project & integrate libraries:
async HTTP client, JSON parser
Develop web API
2 - 3 days later, you’re ready to access the API
Frontend
3 - 4 weeks later, you’re ready to
develop your mobile app features :)
which is OK, if you’re doing it for fun!
OR…
DB & Storage
Authentication
Logic
Push
API
Wrapper
Mobile Backend as a Service
Leverage BaaS
Mobile Services
Microsoft Azure
Mobile Services
a lot of BaaS providers
Turn out…
Microsoft Azure
Mobile Services
So, what is it?
Storage
Authentication
Logic
Push
Scheduler
Mobile Services Demo
Deploy
for less than 5 minutes
Mobile Services
Accessing
from iOS
iOSDevelopment stuffs
allow me talk a bit…
iOS
Objective-C

Since 2008
Introducing Swift…
Since June 2, 2014
Not this one…
Note, I’m a fan :)
A new programming language for iOS and OSX
adding
WindowsAzureMobileServices.framework
to your project
+
as easy as…
Typical Steps We’ll Take
Prepare mobile project & integrate libraries:
async HTTP client, JSON parser
Develop web API
2 - 3 days later, you’re ready to access the API
Frontend
Mobile Services Demo
Let’s do it!
from iOS for less than 5 minutes
Adding

Authentication
//client is instance of MSClient
//assumed to sign-in with Twitter

client?.loginWithProvider("twitter", controller:self, animated:true)
{
//trailing closure for completion handler
(user, error) -> Void in
if user != nil {
//do something about it!
}
}
as easy as adding this code on iOS side
Mobile Services Demo
add Auth to
for iOS for less than 5 minutes
azure mobile preview enable YOUR_MOBILE_SERVICE_NAME Users
Opt-in for Users feature
Getting expanded data of signed in user, via call to 

user.getIdentities()
Install Azure-CLI

Type command:
End-to-end Mobile App Development (with iOS and Azure Mobile Services)
Adding

Server-side logic
The case
Let’s say, upon successful sign-in (on client side), I
want to register signed-in users to a table
Adding server-side logic
On “Insert” operation of User table, add this script:
function insert(item, user, request) {
var usersTable = tables.getTable('User');
usersTable.where({
userId: user.userId,
}).read({
success: function(results) {
if (results.length == 0) {
insertNewUser(usersTable, user);
}
else {
console.log('User exists');
request.respond(statusCodes.OK, results[0]);
}
}
});
}
Cont…
function insertNewUser(theUserTable, theUser) {
theUser.getIdentities({
success: function (identities) {
if (identities.twitter) {
var newUser = { userId: theUser.userId};
if (identities.twitter.screen_name) {
newUser.username = identities.twitter.screen_name;
}
theUserTable.insert(newUser, {
success: function(newItem) {
request.respond(statusCodes.OK, newItem);
}
});
}
else {
console.log('Identities is not retrieved');
request.respond();
}
}
});
}
On client-side
Add this Swift code upon successful sign-in:
let userTable = client?.tableWithName("User")
userTable?.insert(["userId": user.userId]){
(item, error) in
if let err = error {
println("Error: " + err.description)
}
}
Mobile Services Demo
adding server-script
More Advance Use-Case &
customisation…?
Contact office@dycode.com :)
Notes on the Microsoft Azure Platform
Infrastructure as a Service
IaaS
Platform as a Service
PaaS
Get started
Visit azure.com
Free trial! worth $200
Craving to know more about 

iOS development?
Let’s join upcoming
iOS 8 development class - with Swift
http://edu.dycode.co.id
QA
a leading mobile & web apps
developer, an educator, an early
adopter, an award-winning
company
DyCode
www.dycode.com
@dycode

More Related Content

PDF
Intro to Windows Azure Mobile Services with iOS
PPTX
Get started azure- Azure Mobile Services
PDF
Wearables + Azure development
PDF
Develop & Deploy Node.js app on Windows Azure
PDF
Beginning Real World iOS App Development
PDF
Android chat in the cloud
PPTX
Slides of webinar Kendo UI and Knockout.js
PDF
Ionic Auth Connect: Single Sign-on Made Easy
Intro to Windows Azure Mobile Services with iOS
Get started azure- Azure Mobile Services
Wearables + Azure development
Develop & Deploy Node.js app on Windows Azure
Beginning Real World iOS App Development
Android chat in the cloud
Slides of webinar Kendo UI and Knockout.js
Ionic Auth Connect: Single Sign-on Made Easy

What's hot (20)

PDF
Workshop on Sencha Touch - Part 2 - First application in sencha touch
PPTX
Asp.net mvc - Better User Experience with Kendo UI
PPTX
JenkinsMobi: Jenkins XML API for Mobile Applications
PPTX
iOS Developer Interview Questions
PPTX
Appcelerator Titanium - An Introduction to the Titanium Ecosystem
PDF
JavaScript : One To Many
PDF
Kika IME Android Taipei 2016 May
KEY
Life Cycle of an iPhone App
PDF
Intro to mobile apps with the ionic framework & angular js
PPTX
Introduction of Monaca
PPTX
Appium
PPTX
DeveloperWeek2018 - Let's Build a Chatbot
PDF
Appium
PDF
Azure bot service
PPTX
Create Hybrid Mobile Application with Icenium and Kendo UI Mobile
PDF
Bringing Swift into your Objective-C Projects
PDF
Creating mobile apps - an introduction to Ionic (Engage 2016)
PDF
Provisioning Profile
PDF
Building an SSO platform in php (Zendcon 2010)
PDF
Build Your First iOS App With Swift
Workshop on Sencha Touch - Part 2 - First application in sencha touch
Asp.net mvc - Better User Experience with Kendo UI
JenkinsMobi: Jenkins XML API for Mobile Applications
iOS Developer Interview Questions
Appcelerator Titanium - An Introduction to the Titanium Ecosystem
JavaScript : One To Many
Kika IME Android Taipei 2016 May
Life Cycle of an iPhone App
Intro to mobile apps with the ionic framework & angular js
Introduction of Monaca
Appium
DeveloperWeek2018 - Let's Build a Chatbot
Appium
Azure bot service
Create Hybrid Mobile Application with Icenium and Kendo UI Mobile
Bringing Swift into your Objective-C Projects
Creating mobile apps - an introduction to Ionic (Engage 2016)
Provisioning Profile
Building an SSO platform in php (Zendcon 2010)
Build Your First iOS App With Swift
Ad

Viewers also liked (9)

PPTX
Windows Azure Mobile Services : un backend pour vos applications mobiles en 4...
PPTX
2009 - Basta!: Url rewriting mit iis, asp.net und routing engine
PPTX
Azure App Service at Let's Dev This
PPTX
Windows Azure Web Sites - Things they don’t teach kids in school - Comunity D...
PDF
Internet of Things - Technological Perspective
PPTX
Azure App Service Architecture. Web Apps.
PPTX
Azure Cloud PPT
PPTX
Microsoft Cloud Computing - Windows Azure Platform
PPTX
HoloLens x Graphics 入門
Windows Azure Mobile Services : un backend pour vos applications mobiles en 4...
2009 - Basta!: Url rewriting mit iis, asp.net und routing engine
Azure App Service at Let's Dev This
Windows Azure Web Sites - Things they don’t teach kids in school - Comunity D...
Internet of Things - Technological Perspective
Azure App Service Architecture. Web Apps.
Azure Cloud PPT
Microsoft Cloud Computing - Windows Azure Platform
HoloLens x Graphics 入門
Ad

Similar to End-to-end Mobile App Development (with iOS and Azure Mobile Services) (20)

PPTX
Iphone client-server app with Rails backend (v3)
PPTX
Telerik AppBuilder Presentation for TelerikNEXT Conference
PPTX
Azure APIM Presentation to understand about.pptx
PPTX
Mule integration with Servicenow
PDF
Full Angular 7 Firebase Authentication System
PDF
Using API platform to build ticketing system (translations, time zones, ...) ...
PDF
Creating azure logic app for salesforce integration | Webner
PDF
Windows Azure: Connecting the Dots for a Mobile Workforce
PPTX
Online banking
PDF
Easy Step-by-Step Guide to Develop REST APIs with Django REST Framework
PPTX
MongoDB World 2018: Ch-Ch-Ch-Ch-Changes: Taking Your Stitch Application to th...
PDF
Global Windows Azure Bootcamp : Cedric Derue Rhinos have tea on azure. (spons...
PDF
Rhinos have tea_on_azure
PDF
CV_PurnimaBalla_WCS-Consultant_7Yrs
PDF
Inside the Android AccountManager
PDF
Authentication with OAuth and Connected Apps
PDF
Liferay Italy Symposium 2015 Liferay Mobile SDK and Liferay Screens
PDF
OAuth for QuickBooks Online REST Services
PPTX
04 objective-c session 4
PPTX
Introduction aux progressive web apps
Iphone client-server app with Rails backend (v3)
Telerik AppBuilder Presentation for TelerikNEXT Conference
Azure APIM Presentation to understand about.pptx
Mule integration with Servicenow
Full Angular 7 Firebase Authentication System
Using API platform to build ticketing system (translations, time zones, ...) ...
Creating azure logic app for salesforce integration | Webner
Windows Azure: Connecting the Dots for a Mobile Workforce
Online banking
Easy Step-by-Step Guide to Develop REST APIs with Django REST Framework
MongoDB World 2018: Ch-Ch-Ch-Ch-Changes: Taking Your Stitch Application to th...
Global Windows Azure Bootcamp : Cedric Derue Rhinos have tea on azure. (spons...
Rhinos have tea_on_azure
CV_PurnimaBalla_WCS-Consultant_7Yrs
Inside the Android AccountManager
Authentication with OAuth and Connected Apps
Liferay Italy Symposium 2015 Liferay Mobile SDK and Liferay Screens
OAuth for QuickBooks Online REST Services
04 objective-c session 4
Introduction aux progressive web apps

More from Andri Yadi (20)

PDF
AIoT: Intelligence on Microcontroller
PDF
TechInAsia PDC 2019 - Unlocking The Potential of IoT with AI
PDF
Global Azure Bootcamp 2019 - AIoT powered by Azure
PDF
Introduction to AIoT & TinyML - with Arduino
PDF
Opportunities & Challenges in IoT - Future of IoT industry in Indonesia 2019 ...
PDF
Microsoft Azure-powered IoT & AI Solution To Help Farmer
PDF
IoT Connectivity with LoRa
PDF
Ask the Expert: Internet of Things
PDF
Global Azure Bootcamp 2018 - Azure IoT Central
PDF
Maker Movement toward IoT Ecosystem in Indonesia
PDF
IoT for Agriculture in a Nutshell: Technical Perspective
PDF
Road to Republic of IoT - IoT Technologies & Machine Learning
PDF
IoT Connectivity: The Technical & Potential
PDF
IT Solution through IoT Development
PDF
Internet of Things - Technicals
PDF
Global Azure Bootcamp 2017 - Azure IoT Hub with LoRa Connectivity
PDF
The state of NB-IoT in Indonesia
PDF
Industrial IoT in a Nutshell
PDF
The Rise of Maker Movement in Indonesia
PDF
Road to Republic of IoT - ESP32 Programming and LoRa
AIoT: Intelligence on Microcontroller
TechInAsia PDC 2019 - Unlocking The Potential of IoT with AI
Global Azure Bootcamp 2019 - AIoT powered by Azure
Introduction to AIoT & TinyML - with Arduino
Opportunities & Challenges in IoT - Future of IoT industry in Indonesia 2019 ...
Microsoft Azure-powered IoT & AI Solution To Help Farmer
IoT Connectivity with LoRa
Ask the Expert: Internet of Things
Global Azure Bootcamp 2018 - Azure IoT Central
Maker Movement toward IoT Ecosystem in Indonesia
IoT for Agriculture in a Nutshell: Technical Perspective
Road to Republic of IoT - IoT Technologies & Machine Learning
IoT Connectivity: The Technical & Potential
IT Solution through IoT Development
Internet of Things - Technicals
Global Azure Bootcamp 2017 - Azure IoT Hub with LoRa Connectivity
The state of NB-IoT in Indonesia
Industrial IoT in a Nutshell
The Rise of Maker Movement in Indonesia
Road to Republic of IoT - ESP32 Programming and LoRa

Recently uploaded (6)

DOC
证书学历UoA毕业证,澳大利亚中汇学院毕业证国外大学毕业证
PDF
6-UseCfgfhgfhgfhgfhgfhfhhaseActivity.pdf
PDF
Lesson 13- HEREDITY _ pedSAWEREGFVCXZDSASEWFigree.pdf
PDF
heheheueueyeyeyegehehehhehshMedia-Literacy.pdf
PPTX
ASMS Telecommunication company Profile
DOC
Camb毕业证学历认证,格罗斯泰斯特主教大学毕业证仿冒文凭毕业证
证书学历UoA毕业证,澳大利亚中汇学院毕业证国外大学毕业证
6-UseCfgfhgfhgfhgfhgfhfhhaseActivity.pdf
Lesson 13- HEREDITY _ pedSAWEREGFVCXZDSASEWFigree.pdf
heheheueueyeyeyegehehehhehshMedia-Literacy.pdf
ASMS Telecommunication company Profile
Camb毕业证学历认证,格罗斯泰斯特主教大学毕业证仿冒文凭毕业证

End-to-end Mobile App Development (with iOS and Azure Mobile Services)