SlideShare une entreprise Scribd logo
1  sur  35
Télécharger pour lire hors ligne
APACHE SLING & FRIENDS TECH MEETUP 
BERLIN, 22-24 S EPTEMBER 2014 
Mobile app development with Apache Cordova and AEM 
Bruce Lefebvre, Adobe
Hello 
@brucelefebvre 
adaptTo() 2014 2
<% 
agenda.jsp 
out.println("<h1> 
AGENDA 
</h1>" 
+ 
"<ul> 
" 
+ 
" 
<li> 
Problem? 
</li>" 
+ 
" 
<li> 
Solution 
" 
+ 
" 
<ul> 
" 
+ 
" 
<li> 
Cordova 
</li>" 
+ 
" 
<li> 
+ 
Sling 
</li>" 
+ 
" 
<li> 
+ 
AEM 
</li>" 
+ 
" 
</ul> 
" 
+ 
" 
</li> 
" 
+ 
"</ul> 
"); 
%> 
adaptTo() 2014 3
4 
Problem?
Java 
C#, 
C++ 
Objec3ve-­‐C 
Java 
2014 
adaptTo() 2014 5
????? 
2016 
adaptTo() 2014 6
Goal: Avoid proprietary vendor traps 
adaptTo() 2014 7
The Open Web 
§ Opinion: The web solved crossed platform 
§ Open & standardized (for the most part) 
adaptTo() 2014 8
Goal: Presence in app store(s) 
adaptTo() 2014 9
Enter Hybrid Applications 
§ Web app wrapped in a device native shell 
§ Write once, run everywhere* 
§ *aka “the promised land” 
Na3ve 
SDKs 
adaptTo() 2014 10
But… Web vs. Native! 
§ Both built on the same set of technologies 
§ Web capabilities sufficient for most apps 
“If a browser doesn’t do something its not because it can’t; 
it’s just because we haven’t gotten around to implementing that part yet.” 
-Brian LeRoux 
adaptTo() 2014 11
But the web can’t… 
§ Access device features, like: 
§ Camera 
§ Device motion 
§ File system 
§ Location 
§ Provide background notifications 
§ Render without connectivity 
§ or even poor connectivity 
§ Or can it? 
adaptTo() 2014 12
Enter Apache Cordova 
Build apps with web tech you know and love 
adaptTo() 2014 13
Cordova 
§ A cross-platform app framework 
§ Initially PhoneGap, created by Nitobi 
§ Donated to ASF in 2011 as Cordova 
§ of which PhoneGap is a distribution 
adaptTo() 2014 14
Cordova 
§ Supported platforms 
§ iOS 
§ Android 
§ BB10 
§ WP7, WP8, Windows 8 
§ Amazon Fire OS 
§ Tizen 
§ and more… 
adaptTo() 2014 15
Cordova Plugins 
§ Device APIs: 
§ Camera 
§ Geoloca3on 
§ Accelerometer 
§ File 
§ Contacts 
§ Events 
§ Connec3on 
§ No3fica3on 
§ Storage 
§ InAppBrowser 
§ Device 
§ Compass 
§ Globaliza3on 
adaptTo() 2014 16
Cordova CLI 
§ Command line interface features 
§ Bootstrap a new app 
§ build/install/run app on a 
specific platform 
§ Locally 
or 
via 
PhoneGap 
build 
§ Manage plugins 
adaptTo() 2014 17
Let’s give it a try 
adaptTo() 2014 18
Cordova CLI at a glance 
§ Create your app: 
cordova create helloAdaptTo 
§ Add a platform: 
cd helloAdaptTo 
cordova platform add ios 
§ Run your app on a simulator: 
cordova emulate ios 
adaptTo() 2014 19
Cordova + Sling 
§ Goals: 
§ Repurpose existing content 
§ Fetch & present data with 
minimum server side 
customization 
§ Authenticate with the server 
adaptTo() 2014 20
Cordova + Sling 
§ Bonus goals 
§ Post content from device 
§ Be indistinguishable from 
a native app 
§ Offline access to content 
adaptTo() 2014 21
Less talk, more action 
bit.ly/blog-­‐app 
adaptTo() 2014 22
Goal: Repurpose existing content 
§ server/espblog/[…]/apps/espblog/json.esp 
{ 
"title": "<%=post.title%>", 
"link": "<%= serverURI %><%=post%>.json", 
"description": "<%=post.posttext%>", 
"pubDate": "<%=df.format(post.created.getTime())%>", 
"resources": { 
"attachments": [ 
<% renderMedia(post, "attachments"); %> 
] 
} 
} 
adaptTo() 2014 23
Goal: Fetch & present data 
§ www/js/controllers.js 
$http.get(slingHostURI + '/content/espblog/posts.list.json') 
.success(function(data, status) { 
$scope.connected = true; 
$scope.blogPostList = data.posts; 
}) 
.error(function(data, status) { 
$scope.connected = false; 
console.error('Blog post list fetch failed’); 
}); 
adaptTo() 2014 24
Goal: Authenticate with the server 
§ www/js/controllers.js 
$http({ 
method: 'POST', 
url: slingHostURI + '/j_security_check', 
data: formData, 
headers: { 
'Content-Type': undefined 
}, 
transformRequest: formDataObject 
}) 
… 
basicAuthentication.setCredentials(formData.j_username, formData.j_password); 
adaptTo() 2014 25
Cordova + Sling 
§ Reuse existing content 
§ Reuse existing infra 
§ Reuse existing web skills 
§ Write once, run cross-platform 
adaptTo() 2014 26
Cordova + AEM --- PhoneGap Enterprise 
adaptTo() 2014 27
PhoneGap Enterprise 
§ Highlights 
§ Update app content w/o writing code 
§ Integration with Adobe Mobile Services 
§ Over the Air content updates 
§ AngularJS integration 
§ Geometrixx reference implementation 
adaptTo() 2014 28
PhoneGap Enterprise 
adaptTo() 2014 29
PhoneGap Enterprise demo 
bit.ly/aem-­‐pg 
adaptTo() 2014 30
Recap 
§ Problem? 
§ Solution 
§ Cordova 
§ + Sling 
§ + AEM 
adaptTo() 2014 31
bit.ly/blog-­‐app 
bit.ly/aem-­‐pg 
Questions? 
@brucelefebvre 
adaptTo() 2014 32
Appendix 
adaptTo() 2014 33
Resources 
§ Cordova + Sling blog app Github repository 
§ PhoneGap Kitchen Sink Github repository 
§ PhoneGap Beliefs, Goals, and Philosophy – Brian LeRoux 
§ PhoneGap, Cordova, and what’s in a name? – Brian LeRoux 
§ PhoneGap Documentation – v. 3.5.0 
adaptTo() 2014 34
Creative Resources 
§ ‘But the web can’t’ slide 
http://www.designcaffeine.com/uncategorized/mobile-magic-moments-transform-the-trivial/ 
§ ‘Cordova CLI’ slide http://www.stradiji.com/wp-content/uploads/2013/03/swiss-army-knife.png 
§ ‘Cordova Plugins’ slide http://www.freshtilledsoil.com/native-app-vs-mobile-website/ 
§ Apache httpd http://httpd.apache.org/ 
§ ECMA logo http://en.wikipedia.org/wiki/Ecma_International 
§ W3C http://www.w3.org/ 
§ WHATWG http://www.whatwg.org/ 
§ AngularJS https://angularjs.org/ 
§ Sling http://sling.apache.org/ 
§ HTML http://en.wikipedia.org/wiki/HTML 
adaptTo() 2014 35

Contenu connexe

Tendances

IBM Bluemix Cloud Platform Application Development with Eclipse IDE
IBM Bluemix Cloud Platform Application Development with Eclipse IDEIBM Bluemix Cloud Platform Application Development with Eclipse IDE
IBM Bluemix Cloud Platform Application Development with Eclipse IDEhkbhadraa
 
Adobe CS6 Volume Licensing for Education
Adobe CS6 Volume Licensing for EducationAdobe CS6 Volume Licensing for Education
Adobe CS6 Volume Licensing for EducationEduserv
 
Xamarin vs react native features comparison
Xamarin vs react native features comparisonXamarin vs react native features comparison
Xamarin vs react native features comparisonSameerShaik43
 
EventPilot Conference App Editions - the right event app for any meeting
EventPilot Conference App Editions - the right event app for any meetingEventPilot Conference App Editions - the right event app for any meeting
EventPilot Conference App Editions - the right event app for any meetingATIV Software
 
Why APIs Call for 2xs the DevOps
Why APIs Call for 2xs the DevOpsWhy APIs Call for 2xs the DevOps
Why APIs Call for 2xs the DevOpsPostman
 
Open Web Apps - State of the Browser 2014
Open Web Apps - State of the Browser 2014Open Web Apps - State of the Browser 2014
Open Web Apps - State of the Browser 2014Christian Heilmann
 
DevOps Days Singapore 2018 Ignite - Bringing Your Applications into the Futur...
DevOps Days Singapore 2018 Ignite - Bringing Your Applications into the Futur...DevOps Days Singapore 2018 Ignite - Bringing Your Applications into the Futur...
DevOps Days Singapore 2018 Ignite - Bringing Your Applications into the Futur...Matt Ray
 
6 Reasons Why You Should Create React Native Apps For Your Enterprise in 2021
6 Reasons Why You Should Create React Native Apps For Your Enterprise in 20216 Reasons Why You Should Create React Native Apps For Your Enterprise in 2021
6 Reasons Why You Should Create React Native Apps For Your Enterprise in 2021Claritus Consulting
 
Udi Google Dev Day
Udi Google Dev DayUdi Google Dev Day
Udi Google Dev DayUdi Bauman
 
How to optimize your react native app performance
How to optimize your react native app performance How to optimize your react native app performance
How to optimize your react native app performance Katy Slemon
 
Xamarin Test Cloud – Automating Testing Effectively
Xamarin Test Cloud – Automating Testing EffectivelyXamarin Test Cloud – Automating Testing Effectively
Xamarin Test Cloud – Automating Testing EffectivelyAjeet Singh
 
New Amazing Things about AngularJS 2.0
New Amazing Things about AngularJS 2.0New Amazing Things about AngularJS 2.0
New Amazing Things about AngularJS 2.0Mike Taylor
 
Here are the Most Useful Tools for Mobile App Development
Here are the Most Useful Tools for Mobile App DevelopmentHere are the Most Useful Tools for Mobile App Development
Here are the Most Useful Tools for Mobile App DevelopmentIndianAppDevelopers
 
Android Firebase - Edukite
Android Firebase - EdukiteAndroid Firebase - Edukite
Android Firebase - EdukiteEduKite
 
"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier Berni"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier BerniTheFamily
 
Integrating with Adobe Marketing Cloud - Summit 2014
Integrating with Adobe Marketing Cloud - Summit 2014Integrating with Adobe Marketing Cloud - Summit 2014
Integrating with Adobe Marketing Cloud - Summit 2014Paolo Mottadelli
 
Heading towards the great release of angular 8.0 development observe the uno...
Heading towards the great release of angular 8.0 development  observe the uno...Heading towards the great release of angular 8.0 development  observe the uno...
Heading towards the great release of angular 8.0 development observe the uno...Concetto Labs
 
How to Make a Truck Inspection App
How to Make a Truck Inspection AppHow to Make a Truck Inspection App
How to Make a Truck Inspection AppAppSheet
 

Tendances (20)

IBM Bluemix Cloud Platform Application Development with Eclipse IDE
IBM Bluemix Cloud Platform Application Development with Eclipse IDEIBM Bluemix Cloud Platform Application Development with Eclipse IDE
IBM Bluemix Cloud Platform Application Development with Eclipse IDE
 
Adobe CS6 Volume Licensing for Education
Adobe CS6 Volume Licensing for EducationAdobe CS6 Volume Licensing for Education
Adobe CS6 Volume Licensing for Education
 
Xamarin vs react native features comparison
Xamarin vs react native features comparisonXamarin vs react native features comparison
Xamarin vs react native features comparison
 
EventPilot Conference App Editions - the right event app for any meeting
EventPilot Conference App Editions - the right event app for any meetingEventPilot Conference App Editions - the right event app for any meeting
EventPilot Conference App Editions - the right event app for any meeting
 
Why APIs Call for 2xs the DevOps
Why APIs Call for 2xs the DevOpsWhy APIs Call for 2xs the DevOps
Why APIs Call for 2xs the DevOps
 
Google Firebase
Google FirebaseGoogle Firebase
Google Firebase
 
Open Web Apps - State of the Browser 2014
Open Web Apps - State of the Browser 2014Open Web Apps - State of the Browser 2014
Open Web Apps - State of the Browser 2014
 
DevOps Days Singapore 2018 Ignite - Bringing Your Applications into the Futur...
DevOps Days Singapore 2018 Ignite - Bringing Your Applications into the Futur...DevOps Days Singapore 2018 Ignite - Bringing Your Applications into the Futur...
DevOps Days Singapore 2018 Ignite - Bringing Your Applications into the Futur...
 
6 Reasons Why You Should Create React Native Apps For Your Enterprise in 2021
6 Reasons Why You Should Create React Native Apps For Your Enterprise in 20216 Reasons Why You Should Create React Native Apps For Your Enterprise in 2021
6 Reasons Why You Should Create React Native Apps For Your Enterprise in 2021
 
Udi Google Dev Day
Udi Google Dev DayUdi Google Dev Day
Udi Google Dev Day
 
How to optimize your react native app performance
How to optimize your react native app performance How to optimize your react native app performance
How to optimize your react native app performance
 
Android
Android Android
Android
 
Xamarin Test Cloud – Automating Testing Effectively
Xamarin Test Cloud – Automating Testing EffectivelyXamarin Test Cloud – Automating Testing Effectively
Xamarin Test Cloud – Automating Testing Effectively
 
New Amazing Things about AngularJS 2.0
New Amazing Things about AngularJS 2.0New Amazing Things about AngularJS 2.0
New Amazing Things about AngularJS 2.0
 
Here are the Most Useful Tools for Mobile App Development
Here are the Most Useful Tools for Mobile App DevelopmentHere are the Most Useful Tools for Mobile App Development
Here are the Most Useful Tools for Mobile App Development
 
Android Firebase - Edukite
Android Firebase - EdukiteAndroid Firebase - Edukite
Android Firebase - Edukite
 
"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier Berni"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier Berni
 
Integrating with Adobe Marketing Cloud - Summit 2014
Integrating with Adobe Marketing Cloud - Summit 2014Integrating with Adobe Marketing Cloud - Summit 2014
Integrating with Adobe Marketing Cloud - Summit 2014
 
Heading towards the great release of angular 8.0 development observe the uno...
Heading towards the great release of angular 8.0 development  observe the uno...Heading towards the great release of angular 8.0 development  observe the uno...
Heading towards the great release of angular 8.0 development observe the uno...
 
How to Make a Truck Inspection App
How to Make a Truck Inspection AppHow to Make a Truck Inspection App
How to Make a Truck Inspection App
 

Similaire à adaptTo() 2014 - Mobile app dev with Cordova, Sling, and AEM

Mobile Vue.js – From PWA to Native
Mobile Vue.js – From PWA to NativeMobile Vue.js – From PWA to Native
Mobile Vue.js – From PWA to NativeMartinSotirov
 
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014Hazem Saleh
 
Building Cross-Platform Mobile Apps
Building Cross-Platform Mobile AppsBuilding Cross-Platform Mobile Apps
Building Cross-Platform Mobile AppsTroy Miles
 
Getting Acquainted with PhoneGap
Getting Acquainted with PhoneGapGetting Acquainted with PhoneGap
Getting Acquainted with PhoneGapJoseph Labrecque
 
Salesforce1 dev week UYSDUG 2014 - the force canvas spark
Salesforce1 dev week UYSDUG 2014 - the force canvas sparkSalesforce1 dev week UYSDUG 2014 - the force canvas spark
Salesforce1 dev week UYSDUG 2014 - the force canvas sparkAldo Fernandez
 
Cordova Tutorial
Cordova TutorialCordova Tutorial
Cordova TutorialJacky Chen
 
Workshop on Hybrid App Development with Ionic Framework
Workshop on Hybrid App Development with Ionic FrameworkWorkshop on Hybrid App Development with Ionic Framework
Workshop on Hybrid App Development with Ionic FrameworkAayush Shrestha
 
Developing cross platforms mobile applications using the Apache Cordova
Developing cross platforms mobile applications using the Apache CordovaDeveloping cross platforms mobile applications using the Apache Cordova
Developing cross platforms mobile applications using the Apache CordovaMahmoud Tolba
 
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache CordovaHazem Saleh
 
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache CordovaHazem Saleh
 
Cross-platform Mobile Development on Open Source
Cross-platform Mobile Development on Open SourceCross-platform Mobile Development on Open Source
Cross-platform Mobile Development on Open SourceAll Things Open
 
[Devoxx Morocco 2015] Apache Cordova In Action
[Devoxx Morocco 2015] Apache Cordova In Action[Devoxx Morocco 2015] Apache Cordova In Action
[Devoxx Morocco 2015] Apache Cordova In ActionHazem Saleh
 
Plugin for other browsers - webRTC Conference and Expo June 2014 @ atlanta
Plugin for other browsers - webRTC Conference and Expo June 2014 @ atlantaPlugin for other browsers - webRTC Conference and Expo June 2014 @ atlanta
Plugin for other browsers - webRTC Conference and Expo June 2014 @ atlantaAlexandre Gouaillard
 
Apache Cordova - State of the Union 2014
Apache Cordova  - State of the Union 2014Apache Cordova  - State of the Union 2014
Apache Cordova - State of the Union 2014Shazron Abdullah
 
Bridging the Gap: Single-Page Apps and AEM
Bridging the Gap: Single-Page Apps and AEMBridging the Gap: Single-Page Apps and AEM
Bridging the Gap: Single-Page Apps and AEMrbl002
 
Dreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile designDreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile designDee Sadler
 
Cross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkTroy Miles
 

Similaire à adaptTo() 2014 - Mobile app dev with Cordova, Sling, and AEM (20)

Mobile Vue.js – From PWA to Native
Mobile Vue.js – From PWA to NativeMobile Vue.js – From PWA to Native
Mobile Vue.js – From PWA to Native
 
Hybrid HTML5 Apps
Hybrid HTML5 AppsHybrid HTML5 Apps
Hybrid HTML5 Apps
 
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
Developing Native Mobile Apps Using JavaScript, ApacheCon NA 2014
 
Building Cross-Platform Mobile Apps
Building Cross-Platform Mobile AppsBuilding Cross-Platform Mobile Apps
Building Cross-Platform Mobile Apps
 
Getting Acquainted with PhoneGap
Getting Acquainted with PhoneGapGetting Acquainted with PhoneGap
Getting Acquainted with PhoneGap
 
Salesforce1 dev week UYSDUG 2014 - the force canvas spark
Salesforce1 dev week UYSDUG 2014 - the force canvas sparkSalesforce1 dev week UYSDUG 2014 - the force canvas spark
Salesforce1 dev week UYSDUG 2014 - the force canvas spark
 
Cordova Tutorial
Cordova TutorialCordova Tutorial
Cordova Tutorial
 
Workshop on Hybrid App Development with Ionic Framework
Workshop on Hybrid App Development with Ionic FrameworkWorkshop on Hybrid App Development with Ionic Framework
Workshop on Hybrid App Development with Ionic Framework
 
Developing cross platforms mobile applications using the Apache Cordova
Developing cross platforms mobile applications using the Apache CordovaDeveloping cross platforms mobile applications using the Apache Cordova
Developing cross platforms mobile applications using the Apache Cordova
 
Apache Cordova 4.x
Apache Cordova 4.xApache Cordova 4.x
Apache Cordova 4.x
 
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
[JavaLand 2015] Developing JavaScript Mobile Apps Using Apache Cordova
 
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
 
Cross-platform Mobile Development on Open Source
Cross-platform Mobile Development on Open SourceCross-platform Mobile Development on Open Source
Cross-platform Mobile Development on Open Source
 
[Devoxx Morocco 2015] Apache Cordova In Action
[Devoxx Morocco 2015] Apache Cordova In Action[Devoxx Morocco 2015] Apache Cordova In Action
[Devoxx Morocco 2015] Apache Cordova In Action
 
Plugin for other browsers - webRTC Conference and Expo June 2014 @ atlanta
Plugin for other browsers - webRTC Conference and Expo June 2014 @ atlantaPlugin for other browsers - webRTC Conference and Expo June 2014 @ atlanta
Plugin for other browsers - webRTC Conference and Expo June 2014 @ atlanta
 
Apache Cordova - State of the Union 2014
Apache Cordova  - State of the Union 2014Apache Cordova  - State of the Union 2014
Apache Cordova - State of the Union 2014
 
Bridging the Gap: Single-Page Apps and AEM
Bridging the Gap: Single-Page Apps and AEMBridging the Gap: Single-Page Apps and AEM
Bridging the Gap: Single-Page Apps and AEM
 
Dreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile designDreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile design
 
Javantura v4 - Support SpringBoot application development lifecycle using Ora...
Javantura v4 - Support SpringBoot application development lifecycle using Ora...Javantura v4 - Support SpringBoot application development lifecycle using Ora...
Javantura v4 - Support SpringBoot application development lifecycle using Ora...
 
Cross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic Framework
 

Dernier

%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Hararemasabamasaba
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburgmasabamasaba
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxAnnaArtyushina1
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...SelfMade bd
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...chiefasafspells
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...masabamasaba
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2
 

Dernier (20)

%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 

adaptTo() 2014 - Mobile app dev with Cordova, Sling, and AEM

  • 1. APACHE SLING & FRIENDS TECH MEETUP BERLIN, 22-24 S EPTEMBER 2014 Mobile app development with Apache Cordova and AEM Bruce Lefebvre, Adobe
  • 3. <% agenda.jsp out.println("<h1> AGENDA </h1>" + "<ul> " + " <li> Problem? </li>" + " <li> Solution " + " <ul> " + " <li> Cordova </li>" + " <li> + Sling </li>" + " <li> + AEM </li>" + " </ul> " + " </li> " + "</ul> "); %> adaptTo() 2014 3
  • 5. Java C#, C++ Objec3ve-­‐C Java 2014 adaptTo() 2014 5
  • 7. Goal: Avoid proprietary vendor traps adaptTo() 2014 7
  • 8. The Open Web § Opinion: The web solved crossed platform § Open & standardized (for the most part) adaptTo() 2014 8
  • 9. Goal: Presence in app store(s) adaptTo() 2014 9
  • 10. Enter Hybrid Applications § Web app wrapped in a device native shell § Write once, run everywhere* § *aka “the promised land” Na3ve SDKs adaptTo() 2014 10
  • 11. But… Web vs. Native! § Both built on the same set of technologies § Web capabilities sufficient for most apps “If a browser doesn’t do something its not because it can’t; it’s just because we haven’t gotten around to implementing that part yet.” -Brian LeRoux adaptTo() 2014 11
  • 12. But the web can’t… § Access device features, like: § Camera § Device motion § File system § Location § Provide background notifications § Render without connectivity § or even poor connectivity § Or can it? adaptTo() 2014 12
  • 13. Enter Apache Cordova Build apps with web tech you know and love adaptTo() 2014 13
  • 14. Cordova § A cross-platform app framework § Initially PhoneGap, created by Nitobi § Donated to ASF in 2011 as Cordova § of which PhoneGap is a distribution adaptTo() 2014 14
  • 15. Cordova § Supported platforms § iOS § Android § BB10 § WP7, WP8, Windows 8 § Amazon Fire OS § Tizen § and more… adaptTo() 2014 15
  • 16. Cordova Plugins § Device APIs: § Camera § Geoloca3on § Accelerometer § File § Contacts § Events § Connec3on § No3fica3on § Storage § InAppBrowser § Device § Compass § Globaliza3on adaptTo() 2014 16
  • 17. Cordova CLI § Command line interface features § Bootstrap a new app § build/install/run app on a specific platform § Locally or via PhoneGap build § Manage plugins adaptTo() 2014 17
  • 18. Let’s give it a try adaptTo() 2014 18
  • 19. Cordova CLI at a glance § Create your app: cordova create helloAdaptTo § Add a platform: cd helloAdaptTo cordova platform add ios § Run your app on a simulator: cordova emulate ios adaptTo() 2014 19
  • 20. Cordova + Sling § Goals: § Repurpose existing content § Fetch & present data with minimum server side customization § Authenticate with the server adaptTo() 2014 20
  • 21. Cordova + Sling § Bonus goals § Post content from device § Be indistinguishable from a native app § Offline access to content adaptTo() 2014 21
  • 22. Less talk, more action bit.ly/blog-­‐app adaptTo() 2014 22
  • 23. Goal: Repurpose existing content § server/espblog/[…]/apps/espblog/json.esp { "title": "<%=post.title%>", "link": "<%= serverURI %><%=post%>.json", "description": "<%=post.posttext%>", "pubDate": "<%=df.format(post.created.getTime())%>", "resources": { "attachments": [ <% renderMedia(post, "attachments"); %> ] } } adaptTo() 2014 23
  • 24. Goal: Fetch & present data § www/js/controllers.js $http.get(slingHostURI + '/content/espblog/posts.list.json') .success(function(data, status) { $scope.connected = true; $scope.blogPostList = data.posts; }) .error(function(data, status) { $scope.connected = false; console.error('Blog post list fetch failed’); }); adaptTo() 2014 24
  • 25. Goal: Authenticate with the server § www/js/controllers.js $http({ method: 'POST', url: slingHostURI + '/j_security_check', data: formData, headers: { 'Content-Type': undefined }, transformRequest: formDataObject }) … basicAuthentication.setCredentials(formData.j_username, formData.j_password); adaptTo() 2014 25
  • 26. Cordova + Sling § Reuse existing content § Reuse existing infra § Reuse existing web skills § Write once, run cross-platform adaptTo() 2014 26
  • 27. Cordova + AEM --- PhoneGap Enterprise adaptTo() 2014 27
  • 28. PhoneGap Enterprise § Highlights § Update app content w/o writing code § Integration with Adobe Mobile Services § Over the Air content updates § AngularJS integration § Geometrixx reference implementation adaptTo() 2014 28
  • 30. PhoneGap Enterprise demo bit.ly/aem-­‐pg adaptTo() 2014 30
  • 31. Recap § Problem? § Solution § Cordova § + Sling § + AEM adaptTo() 2014 31
  • 32. bit.ly/blog-­‐app bit.ly/aem-­‐pg Questions? @brucelefebvre adaptTo() 2014 32
  • 34. Resources § Cordova + Sling blog app Github repository § PhoneGap Kitchen Sink Github repository § PhoneGap Beliefs, Goals, and Philosophy – Brian LeRoux § PhoneGap, Cordova, and what’s in a name? – Brian LeRoux § PhoneGap Documentation – v. 3.5.0 adaptTo() 2014 34
  • 35. Creative Resources § ‘But the web can’t’ slide http://www.designcaffeine.com/uncategorized/mobile-magic-moments-transform-the-trivial/ § ‘Cordova CLI’ slide http://www.stradiji.com/wp-content/uploads/2013/03/swiss-army-knife.png § ‘Cordova Plugins’ slide http://www.freshtilledsoil.com/native-app-vs-mobile-website/ § Apache httpd http://httpd.apache.org/ § ECMA logo http://en.wikipedia.org/wiki/Ecma_International § W3C http://www.w3.org/ § WHATWG http://www.whatwg.org/ § AngularJS https://angularjs.org/ § Sling http://sling.apache.org/ § HTML http://en.wikipedia.org/wiki/HTML adaptTo() 2014 35