SlideShare a Scribd company logo
1 of 9
Deploying Enterprise Cordova
Windows Phone Apps
Adam Birr
Problems
 Out of the box Cordova Windows Phone project has the following enterprise
issues:
 Airwatch upload didn’t recognise the Appx file as a Windows Phone app
 Dependencies not automatically downloaded
 Requires a redundant dummy DLL which is only used to sign the app
 Product ID not configurable
 Intune can only upgrade Appx files and not Appxbundles
Fixing Cordova
 Two options
1. Fix default Cordova template to handle enterprise deployment
 Push our changes back to the open source community
2. Alter the Cordova build after the default template is pulled down using the built in
hook mechanism
 Chose option 2
 No delays in waiting for approval from community
 Hook mechanism easy to understand – allows custom code to be executed during
various points of the execution process
 Implemented a number of pre-compile hooks
 Hooks written in Javascript executed by Nodejs
Uploading Windows Phone Appx files to
Airwatch
 Airwatch expects the TargetFrameworkMoniker build:Item to be present in the
AppxManifest
 AppxManifest is a generated artifact of the MSBuild process
 Solution:
 Write a Cordova Windows pre-compile hook to alter the CordovaApp.Phone.jsproj file
 Added:
<TargetFrameworkIdentifier>WindowsPhoneApp</TargetFrameworkIdentifier>
<TargetFrameworkVersion>8.1</TargetFrameworkVersion>
to the section:
<PropertyGroup Label=“Configuration”>
Dependencies not automatically downloaded
 Enterprise Windows app do not automatically download Javascript dependencies
 Cordova requires the WinJS dependency to enable it to launch a webview
 Solution:
 Download the latest version of the WinJS library
 Write a Windows pre-compile hook to add files to the Cordova Windows template
 Alter the index.html file of the app to reference the WinJS files included in the project
Redundant dummy DLL
 Required for the sign process in order to produce a CodeIntegrity.cat file
 In order to make the code upgradable, the DLL must have a different version
number and have a code change for each new app version
 Solution
 Create a simple DLL project in Visual Studio with a simple class file
 Write a Cordova Windows pre-compile hook which
 Adds a new method to the simple class file
 Alters the version number of the DLL
 Compiles the DLL using MSBuild
 Adds the resultant artifact to default Cordova Windows Template
Configurable Phone Product ID
 Microsoft Intune identified an application’s uniqueness by the phone product ID
GUID found in the AppxManifest file
 Windows Cordova template generates a new product ID for every build
 Solution:
 Write a Windows Cordova pre-compile hook to take a configurable product ID GUID
Intune can only upgrade Appx files
 Cordova builds an Appxbundle by default
 Appxbundles contain multiple Appx files, often for internationalisation
 Airwatch can only upload Appx files and Intune can only upgrade Appx files
 Solution:
 Write a Windows Cordova pre-compile hook
 Add <AppxBundle>Never</AppxBundle> to the CordovaApp.Phone.jsproj file
Conclusion
 Just because Microsoft supports Cordova and has Cordova templates built into
Visual Studio, it does not mean it will be compatible with Microsoft’s Intune MDM
when used out of the box
 Cordova Hooks can be very useful
 Alter the jsproj file to change what is put into the Appxmanifest file

More Related Content

What's hot

What do you need to know about g rpc on .net
What do you need to know about g rpc on .net What do you need to know about g rpc on .net
What do you need to know about g rpc on .net Moon Technolabs Pvt. Ltd.
 
Getting Started with Visual Studio 2015 and C# 6.0
Getting Started with Visual Studio 2015 and C# 6.0 Getting Started with Visual Studio 2015 and C# 6.0
Getting Started with Visual Studio 2015 and C# 6.0 WinWire Technologies Inc
 
Why does .net maui deserve your attention if you’re planning to use xamarin
Why does .net maui deserve your attention if you’re planning to use xamarin  Why does .net maui deserve your attention if you’re planning to use xamarin
Why does .net maui deserve your attention if you’re planning to use xamarin Moon Technolabs Pvt. Ltd.
 
Xamarin Best Cross Platform Mobile App Development Solution
Xamarin Best Cross Platform Mobile App Development SolutionXamarin Best Cross Platform Mobile App Development Solution
Xamarin Best Cross Platform Mobile App Development SolutionRamin mohmaad hoseini
 
Visual Studio 2015 and the Next .NET Framework
Visual Studio 2015 and the Next .NET FrameworkVisual Studio 2015 and the Next .NET Framework
Visual Studio 2015 and the Next .NET FrameworkSasha Goldshtein
 
Angular.js vs. vue.js – which one is the better choice in 2022
Angular.js vs. vue.js – which one is the better choice in 2022 Angular.js vs. vue.js – which one is the better choice in 2022
Angular.js vs. vue.js – which one is the better choice in 2022 Moon Technolabs Pvt. Ltd.
 
Should you choose react native or swift for i os app development
Should you choose react native or swift for i os app development Should you choose react native or swift for i os app development
Should you choose react native or swift for i os app development Moon Technolabs Pvt. Ltd.
 
Why react native has become the winning choice for cross platform development
Why react native has become the winning choice for cross platform developmentWhy react native has become the winning choice for cross platform development
Why react native has become the winning choice for cross platform developmentShelly Megan
 
Xamarin vs. native script which one is the ideal cross-platform framework fo...
Xamarin vs. native script  which one is the ideal cross-platform framework fo...Xamarin vs. native script  which one is the ideal cross-platform framework fo...
Xamarin vs. native script which one is the ideal cross-platform framework fo...Moon Technolabs Pvt. Ltd.
 
Selenium web driver_2.0_presentation
Selenium web driver_2.0_presentationSelenium web driver_2.0_presentation
Selenium web driver_2.0_presentationsayhi2sudarshan
 
Getting Started with .NET
Getting Started with .NETGetting Started with .NET
Getting Started with .NETLearnNowOnline
 
Rational Rhapsody Workflow Integration with Visual Studio
Rational Rhapsody Workflow Integration with Visual Studio Rational Rhapsody Workflow Integration with Visual Studio
Rational Rhapsody Workflow Integration with Visual Studio Frank Braun
 
Java Programming (M&M)
Java Programming (M&M)Java Programming (M&M)
Java Programming (M&M)mafffffe19
 
[Android] Introduction to Android Programming
[Android] Introduction to Android Programming[Android] Introduction to Android Programming
[Android] Introduction to Android ProgrammingNikmesoft Ltd
 
Enterprise Hybrid Feasibility Analysis
Enterprise Hybrid Feasibility AnalysisEnterprise Hybrid Feasibility Analysis
Enterprise Hybrid Feasibility AnalysisLawrence Nyakiso
 
Flutter vs React Native | Edureka
Flutter vs React Native | EdurekaFlutter vs React Native | Edureka
Flutter vs React Native | EdurekaEdureka!
 
Android studio 4.0 new features preview
Android studio 4.0 new features previewAndroid studio 4.0 new features preview
Android studio 4.0 new features previewConcetto Labs
 

What's hot (20)

What do you need to know about g rpc on .net
What do you need to know about g rpc on .net What do you need to know about g rpc on .net
What do you need to know about g rpc on .net
 
Getting Started with Visual Studio 2015 and C# 6.0
Getting Started with Visual Studio 2015 and C# 6.0 Getting Started with Visual Studio 2015 and C# 6.0
Getting Started with Visual Studio 2015 and C# 6.0
 
Why does .net maui deserve your attention if you’re planning to use xamarin
Why does .net maui deserve your attention if you’re planning to use xamarin  Why does .net maui deserve your attention if you’re planning to use xamarin
Why does .net maui deserve your attention if you’re planning to use xamarin
 
Xamarin Best Cross Platform Mobile App Development Solution
Xamarin Best Cross Platform Mobile App Development SolutionXamarin Best Cross Platform Mobile App Development Solution
Xamarin Best Cross Platform Mobile App Development Solution
 
Visual Studio 2015 and the Next .NET Framework
Visual Studio 2015 and the Next .NET FrameworkVisual Studio 2015 and the Next .NET Framework
Visual Studio 2015 and the Next .NET Framework
 
Angular.js vs. vue.js – which one is the better choice in 2022
Angular.js vs. vue.js – which one is the better choice in 2022 Angular.js vs. vue.js – which one is the better choice in 2022
Angular.js vs. vue.js – which one is the better choice in 2022
 
tittanium
tittaniumtittanium
tittanium
 
Should you choose react native or swift for i os app development
Should you choose react native or swift for i os app development Should you choose react native or swift for i os app development
Should you choose react native or swift for i os app development
 
Why react native has become the winning choice for cross platform development
Why react native has become the winning choice for cross platform developmentWhy react native has become the winning choice for cross platform development
Why react native has become the winning choice for cross platform development
 
Xamarin vs. native script which one is the ideal cross-platform framework fo...
Xamarin vs. native script  which one is the ideal cross-platform framework fo...Xamarin vs. native script  which one is the ideal cross-platform framework fo...
Xamarin vs. native script which one is the ideal cross-platform framework fo...
 
Selenium web driver_2.0_presentation
Selenium web driver_2.0_presentationSelenium web driver_2.0_presentation
Selenium web driver_2.0_presentation
 
Getting Started with .NET
Getting Started with .NETGetting Started with .NET
Getting Started with .NET
 
Rational Rhapsody Workflow Integration with Visual Studio
Rational Rhapsody Workflow Integration with Visual Studio Rational Rhapsody Workflow Integration with Visual Studio
Rational Rhapsody Workflow Integration with Visual Studio
 
Java Programming (M&M)
Java Programming (M&M)Java Programming (M&M)
Java Programming (M&M)
 
[Android] Introduction to Android Programming
[Android] Introduction to Android Programming[Android] Introduction to Android Programming
[Android] Introduction to Android Programming
 
Enterprise Hybrid Feasibility Analysis
Enterprise Hybrid Feasibility AnalysisEnterprise Hybrid Feasibility Analysis
Enterprise Hybrid Feasibility Analysis
 
Iphone app developers
Iphone app developersIphone app developers
Iphone app developers
 
Flutter vs React Native | Edureka
Flutter vs React Native | EdurekaFlutter vs React Native | Edureka
Flutter vs React Native | Edureka
 
Adobe Flex
Adobe FlexAdobe Flex
Adobe Flex
 
Android studio 4.0 new features preview
Android studio 4.0 new features previewAndroid studio 4.0 new features preview
Android studio 4.0 new features preview
 

Similar to Deploying Enterprise Cordova Windows Phone Apps

Mobile Application Development-Lecture 03 & 04.pdf
Mobile Application Development-Lecture 03 & 04.pdfMobile Application Development-Lecture 03 & 04.pdf
Mobile Application Development-Lecture 03 & 04.pdfAbdullahMunir32
 
Mobile os by waqas
Mobile os by waqasMobile os by waqas
Mobile os by waqas8neutron8
 
Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]Sentinel Solutions Ltd
 
Bring and distribute your dekstop applications on the Universal Windows Platf...
Bring and distribute your dekstop applications on the Universal Windows Platf...Bring and distribute your dekstop applications on the Universal Windows Platf...
Bring and distribute your dekstop applications on the Universal Windows Platf...Matteo Pagani
 
lecture-2-android-dev.pdf
lecture-2-android-dev.pdflecture-2-android-dev.pdf
lecture-2-android-dev.pdfjakjak36
 
Introductory webinar on iRidium
Introductory webinar on iRidiumIntroductory webinar on iRidium
Introductory webinar on iRidiumiRidiumMobile365
 
Five Steps to Add AppUp .NET SDK to Microsoft Visual Studio
Five Steps to Add AppUp .NET SDK to Microsoft Visual StudioFive Steps to Add AppUp .NET SDK to Microsoft Visual Studio
Five Steps to Add AppUp .NET SDK to Microsoft Visual Studioreadwritehack
 
Android complete basic Guide
Android complete basic GuideAndroid complete basic Guide
Android complete basic GuideAKASH SINGH
 
DockerPenang Meetup #3
DockerPenang Meetup #3DockerPenang Meetup #3
DockerPenang Meetup #3Sujay Pillai
 
androidPramming.ppt
androidPramming.pptandroidPramming.ppt
androidPramming.pptBijayKc16
 
20170321 docker with Visual Studio 2017
20170321 docker with Visual Studio 201720170321 docker with Visual Studio 2017
20170321 docker with Visual Studio 2017Takayoshi Tanaka
 
How to Develop Cross Platform Application in Visual Studio Code?
How to Develop Cross Platform Application in Visual Studio Code?How to Develop Cross Platform Application in Visual Studio Code?
How to Develop Cross Platform Application in Visual Studio Code?Flutter Agency
 
Introduction_to_android_and_android_studio
Introduction_to_android_and_android_studioIntroduction_to_android_and_android_studio
Introduction_to_android_and_android_studioAbdul Basit
 
Android installation guide
Android installation guideAndroid installation guide
Android installation guidemagicshui
 

Similar to Deploying Enterprise Cordova Windows Phone Apps (20)

Mobile Application Development-Lecture 03 & 04.pdf
Mobile Application Development-Lecture 03 & 04.pdfMobile Application Development-Lecture 03 & 04.pdf
Mobile Application Development-Lecture 03 & 04.pdf
 
Mobile os by waqas
Mobile os by waqasMobile os by waqas
Mobile os by waqas
 
Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]
 
Internship presentation
Internship presentationInternship presentation
Internship presentation
 
Bring and distribute your dekstop applications on the Universal Windows Platf...
Bring and distribute your dekstop applications on the Universal Windows Platf...Bring and distribute your dekstop applications on the Universal Windows Platf...
Bring and distribute your dekstop applications on the Universal Windows Platf...
 
Android Development
Android DevelopmentAndroid Development
Android Development
 
Capacitor 2.0 Launch
Capacitor 2.0 LaunchCapacitor 2.0 Launch
Capacitor 2.0 Launch
 
lecture-2-android-dev.pdf
lecture-2-android-dev.pdflecture-2-android-dev.pdf
lecture-2-android-dev.pdf
 
Android class provider in mumbai
Android class provider in mumbaiAndroid class provider in mumbai
Android class provider in mumbai
 
Introductory webinar on iRidium
Introductory webinar on iRidiumIntroductory webinar on iRidium
Introductory webinar on iRidium
 
Five Steps to Add AppUp .NET SDK to Microsoft Visual Studio
Five Steps to Add AppUp .NET SDK to Microsoft Visual StudioFive Steps to Add AppUp .NET SDK to Microsoft Visual Studio
Five Steps to Add AppUp .NET SDK to Microsoft Visual Studio
 
Android complete basic Guide
Android complete basic GuideAndroid complete basic Guide
Android complete basic Guide
 
DockerPenang Meetup #3
DockerPenang Meetup #3DockerPenang Meetup #3
DockerPenang Meetup #3
 
androidPramming.ppt
androidPramming.pptandroidPramming.ppt
androidPramming.ppt
 
20170321 docker with Visual Studio 2017
20170321 docker with Visual Studio 201720170321 docker with Visual Studio 2017
20170321 docker with Visual Studio 2017
 
What is WebIDE?
What is WebIDE?What is WebIDE?
What is WebIDE?
 
How to Develop Cross Platform Application in Visual Studio Code?
How to Develop Cross Platform Application in Visual Studio Code?How to Develop Cross Platform Application in Visual Studio Code?
How to Develop Cross Platform Application in Visual Studio Code?
 
Introduction_to_android_and_android_studio
Introduction_to_android_and_android_studioIntroduction_to_android_and_android_studio
Introduction_to_android_and_android_studio
 
iOS App Using cordova
iOS App Using cordovaiOS App Using cordova
iOS App Using cordova
 
Android installation guide
Android installation guideAndroid installation guide
Android installation guide
 

More from Adam Birr

Church Websites
Church WebsitesChurch Websites
Church WebsitesAdam Birr
 
Power of cleansing - Gospel of Mark 1 - Adam Birr
Power of cleansing - Gospel of Mark 1 - Adam BirrPower of cleansing - Gospel of Mark 1 - Adam Birr
Power of cleansing - Gospel of Mark 1 - Adam BirrAdam Birr
 
Stages of spiritual growth - spiritual childhood
Stages of spiritual growth - spiritual childhoodStages of spiritual growth - spiritual childhood
Stages of spiritual growth - spiritual childhoodAdam Birr
 
Stages of spiritual growth - spiritual infancy
Stages of spiritual growth - spiritual infancyStages of spiritual growth - spiritual infancy
Stages of spiritual growth - spiritual infancyAdam Birr
 
Real life discipleship - intro
Real life discipleship  - introReal life discipleship  - intro
Real life discipleship - introAdam Birr
 
You and Me forever - Glasgow Church of Christ
You and Me forever - Glasgow Church of ChristYou and Me forever - Glasgow Church of Christ
You and Me forever - Glasgow Church of ChristAdam Birr
 
With your Soul
With your SoulWith your Soul
With your SoulAdam Birr
 
Spirit of 2012 spark grant - This is Ruchill community website
Spirit of 2012 spark grant - This is Ruchill community websiteSpirit of 2012 spark grant - This is Ruchill community website
Spirit of 2012 spark grant - This is Ruchill community websiteAdam Birr
 
Be Merciful - Glasgow church of Christ
Be Merciful - Glasgow church of ChristBe Merciful - Glasgow church of Christ
Be Merciful - Glasgow church of ChristAdam Birr
 
Gospel legacy - Paolo Ugolini
Gospel legacy - Paolo UgoliniGospel legacy - Paolo Ugolini
Gospel legacy - Paolo UgoliniAdam Birr
 
Gospel Unity - Paolo Ugolini
Gospel Unity - Paolo UgoliniGospel Unity - Paolo Ugolini
Gospel Unity - Paolo UgoliniAdam Birr
 
Gospel purity - Paolo Ugolini
Gospel purity - Paolo UgoliniGospel purity - Paolo Ugolini
Gospel purity - Paolo UgoliniAdam Birr
 
Unit Testing
Unit TestingUnit Testing
Unit TestingAdam Birr
 
Ephesians 2 3 - Reconciled with each other - Paolo Ugolini - Glasgow Church o...
Ephesians 2 3 - Reconciled with each other - Paolo Ugolini - Glasgow Church o...Ephesians 2 3 - Reconciled with each other - Paolo Ugolini - Glasgow Church o...
Ephesians 2 3 - Reconciled with each other - Paolo Ugolini - Glasgow Church o...Adam Birr
 
Ephesians 2 - christ and relationships - Paolo Ugolini
Ephesians 2 - christ and relationships - Paolo UgoliniEphesians 2 - christ and relationships - Paolo Ugolini
Ephesians 2 - christ and relationships - Paolo UgoliniAdam Birr
 
Ephesians 1 - every spiritual blessing
Ephesians 1 - every spiritual blessingEphesians 1 - every spiritual blessing
Ephesians 1 - every spiritual blessingAdam Birr
 
Coversion of Saul
Coversion of SaulCoversion of Saul
Coversion of SaulAdam Birr
 
The grace of salvation
The grace of salvationThe grace of salvation
The grace of salvationAdam Birr
 
Unit testing
Unit testingUnit testing
Unit testingAdam Birr
 
What is Truth? - by John Oakes
What is Truth? - by John OakesWhat is Truth? - by John Oakes
What is Truth? - by John OakesAdam Birr
 

More from Adam Birr (20)

Church Websites
Church WebsitesChurch Websites
Church Websites
 
Power of cleansing - Gospel of Mark 1 - Adam Birr
Power of cleansing - Gospel of Mark 1 - Adam BirrPower of cleansing - Gospel of Mark 1 - Adam Birr
Power of cleansing - Gospel of Mark 1 - Adam Birr
 
Stages of spiritual growth - spiritual childhood
Stages of spiritual growth - spiritual childhoodStages of spiritual growth - spiritual childhood
Stages of spiritual growth - spiritual childhood
 
Stages of spiritual growth - spiritual infancy
Stages of spiritual growth - spiritual infancyStages of spiritual growth - spiritual infancy
Stages of spiritual growth - spiritual infancy
 
Real life discipleship - intro
Real life discipleship  - introReal life discipleship  - intro
Real life discipleship - intro
 
You and Me forever - Glasgow Church of Christ
You and Me forever - Glasgow Church of ChristYou and Me forever - Glasgow Church of Christ
You and Me forever - Glasgow Church of Christ
 
With your Soul
With your SoulWith your Soul
With your Soul
 
Spirit of 2012 spark grant - This is Ruchill community website
Spirit of 2012 spark grant - This is Ruchill community websiteSpirit of 2012 spark grant - This is Ruchill community website
Spirit of 2012 spark grant - This is Ruchill community website
 
Be Merciful - Glasgow church of Christ
Be Merciful - Glasgow church of ChristBe Merciful - Glasgow church of Christ
Be Merciful - Glasgow church of Christ
 
Gospel legacy - Paolo Ugolini
Gospel legacy - Paolo UgoliniGospel legacy - Paolo Ugolini
Gospel legacy - Paolo Ugolini
 
Gospel Unity - Paolo Ugolini
Gospel Unity - Paolo UgoliniGospel Unity - Paolo Ugolini
Gospel Unity - Paolo Ugolini
 
Gospel purity - Paolo Ugolini
Gospel purity - Paolo UgoliniGospel purity - Paolo Ugolini
Gospel purity - Paolo Ugolini
 
Unit Testing
Unit TestingUnit Testing
Unit Testing
 
Ephesians 2 3 - Reconciled with each other - Paolo Ugolini - Glasgow Church o...
Ephesians 2 3 - Reconciled with each other - Paolo Ugolini - Glasgow Church o...Ephesians 2 3 - Reconciled with each other - Paolo Ugolini - Glasgow Church o...
Ephesians 2 3 - Reconciled with each other - Paolo Ugolini - Glasgow Church o...
 
Ephesians 2 - christ and relationships - Paolo Ugolini
Ephesians 2 - christ and relationships - Paolo UgoliniEphesians 2 - christ and relationships - Paolo Ugolini
Ephesians 2 - christ and relationships - Paolo Ugolini
 
Ephesians 1 - every spiritual blessing
Ephesians 1 - every spiritual blessingEphesians 1 - every spiritual blessing
Ephesians 1 - every spiritual blessing
 
Coversion of Saul
Coversion of SaulCoversion of Saul
Coversion of Saul
 
The grace of salvation
The grace of salvationThe grace of salvation
The grace of salvation
 
Unit testing
Unit testingUnit testing
Unit testing
 
What is Truth? - by John Oakes
What is Truth? - by John OakesWhat is Truth? - by John Oakes
What is Truth? - by John Oakes
 

Recently uploaded

Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Mater
 
What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....kzayra69
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Natan Silnitsky
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Cyber security and its impact on E commerce
Cyber security and its impact on E commerceCyber security and its impact on E commerce
Cyber security and its impact on E commercemanigoyal112
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样umasea
 
A healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfA healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfMarharyta Nedzelska
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Angel Borroy López
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtimeandrehoraa
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanyChristoph Pohl
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Velvetech LLC
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfLivetecs LLC
 

Recently uploaded (20)

Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)
 
What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Cyber security and its impact on E commerce
Cyber security and its impact on E commerceCyber security and its impact on E commerce
Cyber security and its impact on E commerce
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
 
A healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfA healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdf
 
Advantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your BusinessAdvantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your Business
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtime
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdf
 

Deploying Enterprise Cordova Windows Phone Apps

  • 2. Problems  Out of the box Cordova Windows Phone project has the following enterprise issues:  Airwatch upload didn’t recognise the Appx file as a Windows Phone app  Dependencies not automatically downloaded  Requires a redundant dummy DLL which is only used to sign the app  Product ID not configurable  Intune can only upgrade Appx files and not Appxbundles
  • 3. Fixing Cordova  Two options 1. Fix default Cordova template to handle enterprise deployment  Push our changes back to the open source community 2. Alter the Cordova build after the default template is pulled down using the built in hook mechanism  Chose option 2  No delays in waiting for approval from community  Hook mechanism easy to understand – allows custom code to be executed during various points of the execution process  Implemented a number of pre-compile hooks  Hooks written in Javascript executed by Nodejs
  • 4. Uploading Windows Phone Appx files to Airwatch  Airwatch expects the TargetFrameworkMoniker build:Item to be present in the AppxManifest  AppxManifest is a generated artifact of the MSBuild process  Solution:  Write a Cordova Windows pre-compile hook to alter the CordovaApp.Phone.jsproj file  Added: <TargetFrameworkIdentifier>WindowsPhoneApp</TargetFrameworkIdentifier> <TargetFrameworkVersion>8.1</TargetFrameworkVersion> to the section: <PropertyGroup Label=“Configuration”>
  • 5. Dependencies not automatically downloaded  Enterprise Windows app do not automatically download Javascript dependencies  Cordova requires the WinJS dependency to enable it to launch a webview  Solution:  Download the latest version of the WinJS library  Write a Windows pre-compile hook to add files to the Cordova Windows template  Alter the index.html file of the app to reference the WinJS files included in the project
  • 6. Redundant dummy DLL  Required for the sign process in order to produce a CodeIntegrity.cat file  In order to make the code upgradable, the DLL must have a different version number and have a code change for each new app version  Solution  Create a simple DLL project in Visual Studio with a simple class file  Write a Cordova Windows pre-compile hook which  Adds a new method to the simple class file  Alters the version number of the DLL  Compiles the DLL using MSBuild  Adds the resultant artifact to default Cordova Windows Template
  • 7. Configurable Phone Product ID  Microsoft Intune identified an application’s uniqueness by the phone product ID GUID found in the AppxManifest file  Windows Cordova template generates a new product ID for every build  Solution:  Write a Windows Cordova pre-compile hook to take a configurable product ID GUID
  • 8. Intune can only upgrade Appx files  Cordova builds an Appxbundle by default  Appxbundles contain multiple Appx files, often for internationalisation  Airwatch can only upload Appx files and Intune can only upgrade Appx files  Solution:  Write a Windows Cordova pre-compile hook  Add <AppxBundle>Never</AppxBundle> to the CordovaApp.Phone.jsproj file
  • 9. Conclusion  Just because Microsoft supports Cordova and has Cordova templates built into Visual Studio, it does not mean it will be compatible with Microsoft’s Intune MDM when used out of the box  Cordova Hooks can be very useful  Alter the jsproj file to change what is put into the Appxmanifest file