SlideShare a Scribd company logo
Cross Platform Native Mobile App
Development for iOS, Android and
Windows Using the Power of C#

Marcel de Vries
Technology Manager
@marcelv
Agenda
Introduction to Xamarin& Mobile
Creating your first iOS app
Creating your first Android app
Code Sharing Tips
Summary
Cross platform native mobile app development for iOS, Android and Windows using the power of C#
Building apps for the Mobile Space
Developer

User
Experience

productivity

Security &
privacy

Distribution:
Public or private
Corporate?

Which
platforms?
Application
Lifecycle
Management
Application types
Application types
Native look & feel

--

--

++

Camera Access

-++

+++

++
++

Secure service communication

JSON/REST

JSON/REST

JSON/SOAP

Access to calendar

--

--

++

Twitter integration

+-

+-

+

Distribution

++

AppStore presence

AppStore presence

GPS
3 types

Xamarin

WP8/win8
Xaml + C#
Xamarin

Xamarin.iOS

Xamarin.Android

XCode
Objective-C

WP7
Silverlight
C#

Adobe AIR
ActionScript

Appcelerator Titanium
JavaScript > Native

Service2Media
Lua

Rhodes
Ruby + HTML
Android SDK
Java

Antenna
Rapid Scripting
Language
Kony
Javascript
Lua

Vendor tools

Sybase Unwired
“4GL” code gen

C#
App Logic

PhoneGap
HTML5 / CSS / JS

“Magic Box”

Shared
language
Hybrid
Xamarin History
Over a Decade of Enterprise Production Use
450,000
Reach 200,000
Developers
Developer
100+ Partners
Mark
100+ Components

2000

Ximian
Founded

2001

2003

2009

2011

Mono
Launches

Ximian
Acquired
by Novell

First iOS
product (now
Xamarin.iOS)
launches

2013

Xamarin
Founded

2012

First
Xamarin 2.0
release of
Xamarin.Mac Component
First
Store
Release of
Launch
Xamarin Test
Xamarin.Android Partner
Cloud
Program
Evolve 2013
Microsoft
Partnership
Anything you can do in Objective-C or Java can be
done in C# and Visual Studio with Xamarin.
Native Performance

Xamarin.iOS does full Ahead Of
Time (AOT) compilation to produce
an ARM binary suitable for Apple’s
App Store.

Xamarin.Android takes advantage
of Just In Time (JIT) compilation
on the Android device.
Accelerate Development with Code
Sharing
Code sharing statistics from production Xamarin app: real-time
circuit simulator and editor used to design analog and digital
circuits
Completely Up-to-Date with Device OS releases

Always up-to-date with the
latest APIs from Apple and
Google.
Track record of offering sameday support: iOS 5, iOS 6, iOS

✔

6.1 and iOS 7.
Cross platform native mobile app development for iOS, Android and Windows using the power of C#
UIKit

3rd party app

Tap app icon
main()

AppDelegate

UIApplicationMain()

FinishedLaunching

Event loop

HandleEvent

Quit foreground msg

OnActivated
OnResignActivation

Background

DidEnterBackground
WillTerminate

Restart tasks
Reload state
Refresh
Pause tasksUI
Throttle down
frame rates

Save state

Save data
Free resources
App model
View

UIView
Actions

Outlets
Controller
NavigationController

Model manipulation

Model

UIViewController
UITableView & Navigation
UITableView & Navigation
Data + table cells

UITableViewDataSource

UITableViewController

UITableViewSource

Events

UITableViewDelegate
Demo
iOS app basics
Cross platform native mobile app development for iOS, Android and Windows using the power of C#
Android

Mobile OS made by google
Targets: Tablets and mobile phones
Mono for Android
Architectural picture of Mono for Android
.NET APIs

Android
Bindings

Mono (.NET Runtime)

MCW
ACW

Linux Kernel

Android.
*

Java.*

Dalvik (Java Runtime)
App model - Activity lifecycle
Activity
Launched
Restore
state here

Initialize
layout here

onCreate()

User navigates to
the activity

onStart()

onRestart()

onResume()
Another activity
App process comes into the
foreground

killed

Activity
running

The activity is no longer visible
Apps with higher state
The activitySave
is finishing or being onPause()
priority need
destroyed by the system
memory here
onStop()

onDestroy()

Activity shut
down

User returns to
the activity

User navigates to
the activity
Building apps on android

Intent

Intent

Activity
Intent

Content
Provider

View

Intent

Activity

Intent

View

Service

Intent

Broadcast
Receiver
Demo
Android app basics
Services
21%

Reusable
34%

Per App
Specific
16%

Windows
Phone
10%
Shared
84%

iOS
8%
Android
10%

Shared Logic
17%
Platform UI
Design Patterns for Reuse

Data
Serialization
Caching

Security

Application Business Logic

AuthN/AuthZ
Encryption
Data Self Destruction

Utilities

Platform Agnostic API

Device services

Analytics
Logging

Glue together the
application layers
Design Patterns for Reuse
Basics
View

Controller
Model

GPS
Motion sensors
Storage
Etc.

Services
Model Implementation
We implement the Model as a Singleton
Model Implements INotifyPropertyChanged
Easy to enlist subscribers
Facilitate automatic databinding in XAML
Model contains rich features such as filtering and
advanced selections
Easy to share logic
Model Implementation
public class MainModel : INotifyPropertyChanged
{
private static MainModel _model;
private static object _lockHandle = new object();
// Facilitates Windows Phone app resume
public void RestoreState(MainModel state)
{
_model = state;
}
public static MainModel Current
{
get {
if (_model == null) {
_model = new MainModel();
}
return _model;
}
}
public IEnumerable<Event> ActualEvents {
get {
// E.g. Complex linq stuff
}
}
}

// Model Usage:
var foo = MainModel.Current.ActualEvents;
Check your water level
XAML /

Device Specific

ValueConverter

Reusable Business Logic
Model Property
Value
Transformation
Cross platform native mobile app development for iOS, Android and Windows using the power of C#
public class ISKEController
{
private static ISKEController _instance;
private ISKEDomainServicesoap _proxy;
public static ISKEController Current
{
get {
if (_instance == null) {
_instance = new ISKEController();
}
return _instance;
}
}
private void GetActualEvents (Action<object> OnSuccess, Action<Exception> OnFail)
{
// do some logic, or service call
// use actions to report result or trigger UI action
}
}
S

F
UIViewControlle
r

S

F
XAML View

Activity

public void OnSuccess(object
data)public void OnFailed(Exception
{
e)
//{Do something with data
Shared Controller
// Notify user
// Do GetActualEvents
something with error
}
}

(Action<object> OnSuccess,
Action<Exception> OnFail)

Web Services

S

F

Model
PropertyChanged(“Events”)
;
Demo
Action<T>
Cross platform native mobile app development for iOS, Android and Windows using the power of C#
iOS

MonoTouch.CoreLocation
MonoTouch.CoreMotion
MonoTouch.AVFoundation
MonoTouch.AddressBook
MonoTouch.EventKit
…

Android:
Android.Hardware.Sensor
Android.Location
Android.Bluetooth
Android.Nfc
…

Windows Phone:
Microsoft.Devices.Sensors.Gyroscope
Microsoft.Devices.Sensors.Accelerometer
Microsoft.Devices.Sensors.Compass
Microsoft.Devices.Sensors.Motion
…
Partial classes &
methods
A.cs
partial class A
{
// Half of the implementation
}

A.extra.cs
partial class A
{
// The other half
}
A.cs

A.iOS.cs

partial classAlways private and returns
A
{
void
// Declare the method here
partial void DoSomethingEx();

partial class A
{
// Provide the implementation here
partial void DoSomethingEx()
{
public void DoSomething()
// Do something iOS specific
{
}
// Some shared logic be used from shared
}
Can
Leaves room for specific
DoSomethingEx();
logic
implementation
}

}
Cross platform native mobile app development for iOS, Android and Windows using the power of C#
Demo
Summary
Xamarin provides Native Cross platform
capabilities
– Best of all worlds

Use the power of C#
– BCL, LINQ, ASYNC, etc

Keep abstractions as simple as possible
– Avoid IOC, Big frameworks
– Remember your on a mobile device, each cycle
counts!

More Related Content

PDF
Xamarin.Forms - Your Complete Mobile Solution
PDF
EastBay.net Building Mobile Apps with Xamarin and Visual Studio
PDF
Powering your Apps with Cloud Services
PDF
Mobile Cross-Platform App Development in C# with Xamarin
PPTX
Build once deploy everywhere using the telerik platform
PDF
Cross Platform Development with Xamarin
PPTX
What is flutter app development
PDF
What is flutter app development
Xamarin.Forms - Your Complete Mobile Solution
EastBay.net Building Mobile Apps with Xamarin and Visual Studio
Powering your Apps with Cloud Services
Mobile Cross-Platform App Development in C# with Xamarin
Build once deploy everywhere using the telerik platform
Cross Platform Development with Xamarin
What is flutter app development
What is flutter app development

What's hot (20)

PPTX
Solution-Architectures-MADP-20180125
PPTX
SharePoint Mobile App Development with Xmarin
PDF
Xamarin Platform
PPTX
Cross platformmobileapp
PDF
How Xamarin Is Revolutionizing Mobile Development
PDF
State of Union: Xamarin & Cross-Platform .NET in 2016 and Beyond
PPTX
GDG DevFest Istanbul - Mobile DevOps - Build, Test and Deploy Your Android Ap...
PDF
B feigin mobileapplicationdevelopment
PPT
Developing Cross-platform Native Apps with Xamarin
PDF
Windows 10 IoT Core - Inovasyon Haftasi - TİM
PPTX
Azure for Android Developers
PPTX
Xamarin Forms, MVVM and Testing
PPTX
Building cross-platform mobile apps with Xamarin
PDF
Java with android
PPTX
Titanium presentation
PDF
Top reasons why to choose xamarin for mobile app development
PPTX
Adding advanced Device Capabilities to Android
DOCX
Reason why app development company choose xamarin for cross platform
PDF
The Hitchhicker’s Guide to Windows Azure Mobile Services | FalafelCON 2014
PPTX
Choosing the Right Mobile Development Platform (Part 5)
Solution-Architectures-MADP-20180125
SharePoint Mobile App Development with Xmarin
Xamarin Platform
Cross platformmobileapp
How Xamarin Is Revolutionizing Mobile Development
State of Union: Xamarin & Cross-Platform .NET in 2016 and Beyond
GDG DevFest Istanbul - Mobile DevOps - Build, Test and Deploy Your Android Ap...
B feigin mobileapplicationdevelopment
Developing Cross-platform Native Apps with Xamarin
Windows 10 IoT Core - Inovasyon Haftasi - TİM
Azure for Android Developers
Xamarin Forms, MVVM and Testing
Building cross-platform mobile apps with Xamarin
Java with android
Titanium presentation
Top reasons why to choose xamarin for mobile app development
Adding advanced Device Capabilities to Android
Reason why app development company choose xamarin for cross platform
The Hitchhicker’s Guide to Windows Azure Mobile Services | FalafelCON 2014
Choosing the Right Mobile Development Platform (Part 5)
Ad

Similar to Cross platform native mobile app development for iOS, Android and Windows using the power of C# (20)

PPTX
Develop Hybrid Mobile Application with Azure Mobile Services and Telerik Plat...
PPTX
Xamarin Platform
PPTX
Kony Development Cloud
PDF
Android Minnebar
PPTX
Cross platform mobile development (speaker Vitaly Ilchenko, Binary Studio)
PPTX
Day: 1 Introduction to Mobile Application Development (in Android)
PDF
Ibm empresa movil
PDF
Best android frameworks for app development in 2023.pdf
PDF
Building a Node.js Backend in the Cloud for Android Apps
PPTX
MobiCloud: Towards Cloud Mobile Hybrid Application Generation using Semantica...
PDF
Top 10 Android Frameworks for Modern.pdf
PDF
BMobileApplicationDevelopment COURSE.pdf
PDF
Mobile Application Development
PPTX
Introduction to android mobile app development.pptx
PPTX
Mobile Application Development Platform 2017
PPTX
Android architecture
PPTX
Cross-Platform Mobile Development using Visual Studio and Xamarin
PPTX
PDF
Day 1 Android: Before Getting Started
PPTX
Introduction to Cross Platform Mobile Apps (Xamarin)
Develop Hybrid Mobile Application with Azure Mobile Services and Telerik Plat...
Xamarin Platform
Kony Development Cloud
Android Minnebar
Cross platform mobile development (speaker Vitaly Ilchenko, Binary Studio)
Day: 1 Introduction to Mobile Application Development (in Android)
Ibm empresa movil
Best android frameworks for app development in 2023.pdf
Building a Node.js Backend in the Cloud for Android Apps
MobiCloud: Towards Cloud Mobile Hybrid Application Generation using Semantica...
Top 10 Android Frameworks for Modern.pdf
BMobileApplicationDevelopment COURSE.pdf
Mobile Application Development
Introduction to android mobile app development.pptx
Mobile Application Development Platform 2017
Android architecture
Cross-Platform Mobile Development using Visual Studio and Xamarin
Day 1 Android: Before Getting Started
Introduction to Cross Platform Mobile Apps (Xamarin)
Ad

More from Marcel de Vries (10)

PDF
Best practices for using open source software in the enterprise
PDF
Architecting systems for continuous delivery
PDF
Using microsoft application insights to implement a build, measure, learn loop
PPTX
Continuous delivery with Release Management for visual Studio
PPTX
Release management with tfs 2013
PPTX
Release management with tfs 2013
PPTX
Leveraging the azure cloud for your mobile apps
PPTX
Developing i phone, android and windows phone 7 applications with c#
PPTX
Cross platform mobile developement introduction
PPTX
Mobile en cloud wat is de impact op ons huidige it ecosysteem
Best practices for using open source software in the enterprise
Architecting systems for continuous delivery
Using microsoft application insights to implement a build, measure, learn loop
Continuous delivery with Release Management for visual Studio
Release management with tfs 2013
Release management with tfs 2013
Leveraging the azure cloud for your mobile apps
Developing i phone, android and windows phone 7 applications with c#
Cross platform mobile developement introduction
Mobile en cloud wat is de impact op ons huidige it ecosysteem

Recently uploaded (20)

PDF
Machine learning based COVID-19 study performance prediction
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Approach and Philosophy of On baking technology
PPTX
Cloud computing and distributed systems.
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PPTX
MYSQL Presentation for SQL database connectivity
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
A Presentation on Artificial Intelligence
PDF
Empathic Computing: Creating Shared Understanding
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
cuic standard and advanced reporting.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
Machine learning based COVID-19 study performance prediction
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Approach and Philosophy of On baking technology
Cloud computing and distributed systems.
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
MYSQL Presentation for SQL database connectivity
The AUB Centre for AI in Media Proposal.docx
Mobile App Security Testing_ A Comprehensive Guide.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Encapsulation_ Review paper, used for researhc scholars
A Presentation on Artificial Intelligence
Empathic Computing: Creating Shared Understanding
Diabetes mellitus diagnosis method based random forest with bat algorithm
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Reach Out and Touch Someone: Haptics and Empathic Computing
NewMind AI Monthly Chronicles - July 2025
cuic standard and advanced reporting.pdf
Building Integrated photovoltaic BIPV_UPV.pdf

Cross platform native mobile app development for iOS, Android and Windows using the power of C#

Editor's Notes

  • #7: Rhodes – rhomobile ; Ruby + HTML; MVC architectuur met extra framework zakenvoor sync en ORMAntenna: Appcellerator: pure javascriptoplossing met cross platform API. Wel: native UI bindings. Interpreted door meegedeployde interpreter
  • #27: Data Self Destruction: when a device gets compromised, you’d want some way built into the app to enable data self destruction. This might be some generic security class that is able to wipe the data portion of the application based on some (remote) signal.
  • #28: Controller acts as a Mediator in Cocoa interpretation of MVC
  • #32: Photo Credit: &lt;a href=&quot;http://www.flickr.com/photos/45409431@N00/3499224439/&quot;&gt;marfis75&lt;/a&gt; via &lt;a href=&quot;http://compfight.com&quot;&gt;Compfight&lt;/a&gt; &lt;a href=&quot;http://creativecommons.org/licenses/by-sa/2.0/&quot;&gt;cc&lt;/a&gt;