This guide illustrates how to set up an Apple device for deployment, and deploy an application. It covers how to:

Size: px
Start display at page:

Download "This guide illustrates how to set up an Apple device for deployment, and deploy an application. It covers how to:"

Transcription

1 Device Provisioning Overview Before you can deploy your application to a device, you need to have an active subscription with the Apple Developer Program. Visit the Apple Developer Portal to get registered. Apple has outlined a set of special guidelines that developers must follow in order to do everything from deploying to a device to shipping to the App Store. These steps ensure that everything you create or use during the development process, including your applications and devices, can be traced back to your Apple Developer account. This guide illustrates how to set up an Apple device for deployment, and deploy an application. It covers how to: 1. Generate a certificate 2. Provision the device 3. Provision the application and devide to use store technologies 4. Launch the application on device with Xamarin Studio and Visual Studio Let's get started. Requesting a Development Certificate The first step in setting up a development device is requesting a development certificate from Apple. Development certificates and associated keys are a critical piece of information for you as an ios developer: they establish your identity with Apple and associate you with a given device and profile for development, akin to putting your digital signature on your applications. Apple checks for certificates to enforce control over the devices to which you are allowed to deploy. Note: Losing the certificate and associated keys can be incredibly disruptive, as will require you to revoke your existing certificate and re-provision any associated devices, including those registered for ad-hoc deployment. Apple's Xcode will be required to manage development teams, certificates and provisioning profiles. The following sections describe the steps required to use Xcode to generate and install the necessary certificates and profiles to develop and deploy ios applications from Xamarin Studio. Adding Your Apple ID Account in Xcode Before any of the required certificates or profiles and be added, the developer must attach their Apple ID Account

2 to Xcode. 1. Start Xcode. 2. Choose Xcode Menu > Preferences Click the Accounts tab. 4. Click the Add (+) button and select Add Apple ID... from the popup menu: 5. If you have an Apple ID that belongs to an Apple Developer Program, enter your Apple ID and password, and click the Add button:

3 6. Otherwise, click Join a Program in the lower-left corner of the dialog and the Apple Developer Program Page will be displayed in the default web browser: 7. Select a program from the list and follow the onscreen instructions to sign up for an account. 8. Once the new account has been successfully created, return to Xcode and fill in the new account information and click the Add button to continue:

4 Generate a Development Certificate Manually If you are using Visual Studio for Xamarin.iOS development, you also have the option of provisioning manually using the Apple Developer Portal. This requires a few more steps, but the process is not difficult: 1. Login to the Certificates, Identifiers, and Profiles section of the Developer Portal and select the Certificates section from the ios Apps column. Then, hit the "+" to create a new certificate: 2. Select the "ios App Development" option for certificate type. This screen may look different depending on your account privileges:

5 3. To generate a certificate manually, launch Keychain Access from Applications on your Mac. Navigate to the main menu, and select Certificate Assistant and Request a Certificate from a Certificate Authority Fill in your information, and select the option to save Certificate to disk:

6 5. Save the Certicifate somewhere you can find it: 6. Back in the Provisioning Portal, upload the Certificate to the portal and submit:

7 If you do not have admin privileges, you will have to wait for Certificate approval from an account manager. 7. Once the Certificate is approved, download it from the Provisioning Portal: 8. Double clicking on the downloaded Certificate will launch Keychain Access and open the My Certificates panel, showing the new certificate(s):

8 Note: If your Apple Developer account is part of a team, you will see your team members' profiles appear in the Organizer window alongside yours. Understanding Certificate Key Pairs We've mentioned that the Developer Profile contains certificates, their associated keys, as well as any provisioning profiles associated with the account. There are actually two versions of your Developer Profile - one is on the Developer Portal, and the other lives on your local Mac. The difference between the two is the type of keys they contain: the Profile on the Portal houses all the public keys associated with your certificates, while the copy on your local Mac contains all the private keys. For the certificates to be valid, the key pairs must match. Keep a backup of the Developer Profile on your local Mac, because if the private keys are lost, all the certificates and provisioning profiles will need to be regenerated. Provisioning for Development Now that you ve established your identity with Apple and have a Development Certificate, let's set up a provisioning profile so you can deploy to your Apple device. A provisioning profile is a set of digital entities that connects devices and developers with a valid Apple developer account. A device must have your provisioning profile installed in order for you to deploy to it. Note: If your application makes use of store technologies such as icloud or Passbook, you need to provision both the application and the device in the Developer Portal. For more information, see the next section on provisioning applications that use store technologies. Add a Device To generate a provisioning profile, we will first add a device. Devices are added manually using the Apple Developer Portal:

9 1. First, plug in a USB data cable to the ios device. Launch itunes and navigate to the device panel. The device details should appear: Click on the device serial number in itunes to bring up the UDID (Unique Device Identifier). Right click on the UDID to copy it: 2. In the Provisioning Portal, navigate to the Devices section and click the "+" to add a new device. Enter the device name and UDID, and submit: 3. Confirm your device information and submit the request. The device will appear in the device list:

10 Team Provisioning Profile By default, adding a device will create an ios Team Provisioning Profile. We can view this profile and add additional profiles by returning to the ios Provisioning Portal and navigating to Provisioning > Development: If you are an individual developer, the Team Provisioning Profile will contain information about all of your devices and development certificates. If you are sharing a team Apple Developer account, the Team Provisioning Profile will keep track of all devices used by your team, as well as all developer certificates. The Team Provisioning Profile also includes a Wildcard App ID. This in an App ID that will match any app created by you or your team that does not use store technologies, and allow you to deploy these apps to your device. A device is considered provisioned when a provisioning profile contains information about that device is installed on the device. Provisioning for Store Technologies Store technologies, also called entitlements, require a special provisioning process. These technologies include: icloud Passbook Game Center Apple Push Notifications Newsstand

11 Routing apps (such as Maps) In-App Purchases Inter-App Audio Data protection/file security Requesting Signing Identities After the certificates or provisioning profiles have been created in the Apple Developer Portal use the above steps, they will need to be pulled into Xcode so they that they can be accessed by Xamarin Studio. 1. Quit Xamarin Studio. 2. Start Xcode. 3. Choose Xcode Menu > Preferences Click the Accounts tab. 5. Click the View Details... button: 6. The Account Details sheet will be displayed.

12 7. Click the Refresh icon button in the lower left hand corner of the screen: 8. After the list of available Provisioning Profiles has been updated, click the Done button. 9. Quit Xcode. 10. Start Xamarin Studio. The new certificates or provisioning profiles will be available in Xamarin Studio and ready to use. Note: It is sometime necessary to stop and restart Xamarin Studio before it will see any new or modified certificates or profiles updated by Xcode. Set Entitlements in Xamarin Studio You can set entitlements for your projects directly in Xamarin Studio by editing the project's Info.plist and Entitlements.plist in the advanced.plist editor. 1. Before you can add entitlements to your project, you need to set a bundle identifier. Open your application's Info.plist by double-clicking on the file in the Solution Pad.

13 2. To enable Maps integration with your application or Enable Background Modle, scroll down in the Info.plist and check the application's requirements: 3. Next, open the Entitlements.plist file by double clicking on the file in the Solution Pad. You can enable icloud, Passbook, and other store technologies directly in the.plist editor:

14 Older applications may not have an Entitlements.plist in the solution, but one can be added by right-clicking on the project and choosing Add > New File > ios > Entitelements.plist: 4. When you build your application, Xamarin Studio will automatically create a provisioning profile for your application with the required entitlements. Manually Provision for Store Technologies An application using store technologies requires unique application and device provisioning profiles. This section covers the required steps to provision both app and device. Refer to this Apple diagram from the Provisioning

15 Your App For Store Technologies guide for an overview of what information needs to be exchanged between the application and the provisioning profile in order for an application to launch on a device. In the previous example, we relied on the Wildcard App ID provided by the Team Provisioning Profile. Because this application will have special permissions to use store technologies, we can no longer use the team profile, and need to generate a explicit identifier for our app. The first step is to create this identifier, called the App ID. This section explains how to provision profiles with entitlements using Xamarin Studio. The next section explains how to provision manually. To create the App ID manually: 1. Login to the Certificates, Identifiers, and Profiles section of the Developer Portal and select the Identifiers section from the ios Apps column. Then, hit the "+" to create a new App ID: Under Description, enter a friendly name for your App ID so you can find it later. 2. The Prefix, otherwise known as the Bundle Seed ID, is auto-generated by Apple. Two applications sharing the same Prefix can share keychain information and determine the availability of services. For example, the certificates associated with a particular Prefix also determines whether Push Notifications are available. We will select the Team ID:

16 3. For the Suffix, set an Explicit App ID. The store technologies will not work with a Wildcard App ID: 4. Next, select the services (store technologies) that the application needs. We've selected icloud, Data Protection, and Push Notifications (Game Center and In-App Purchases are selected by default):

17 Note: Game Center and In-App Purchases services are selected by default whenever you create a new App ID; however, they are not available as part of the Team Provisioning Profile (or any profile that uses a Wildcard App ID). 5. Confirm the new App ID: With the App ID in place, the next step is to create a provisioning profile using the new App ID. This profile will contain the App ID with the store services enabled, your developer profile, and the devices that are allowed to run the application. Generate a Provisioning Profile

18 To generate a provisioning profile, do the following: 1. Under Provisioning Profiles in the Developer Portal, select Development and then hit "+" to create a new one. Again, choose ios App Development in the available profiles list: 2. From the list of App IDs, select the one we just created:

19 3. From the list of developer certificates, select yours: 4. From the list of devices, select the devices you want your application to run on:

20 5. Name the profile, and Generate:

21 6. Finally, download and install the new profile: You are now ready to deploy an app that uses store technologies! Launch an Application on Device with Xamarin Studio Now that either the team provisioning profile or unique provisioning profile is installed on the device, we can take advantage the App ID to deploy any application to the device. 1. In Xamarin Studio, select the device name from the second dropdown. This option is located on the top left and determines the location to which the application will deploy.

22 Hit the play button to deploy. 2. A popover will appear asking for permission to use your signing key. Select "Allow" or "Always Allow" depending on how much you enjoy popovers. 3. The application should deploy to the device:

23 Launch an Application on Device with Visual Studio 1. Ensure that the device is connected to the Mac build host. 2. In Visual Studio, select iphone at the deployment target, and chose the device name from the third dropdown menu at the top: Summary In this guide, we generated a certificate and a provisioning profile that allowed us to deploy an application to device in both Xamarin Studio and Visual Studio.

ios App Resigning and VoIP Certificate Guide

ios App Resigning and VoIP Certificate Guide ios App Resigning and VoIP Certificate Guide 1 Configuring ios Support In order to provide the best security possible, Lookout distributes its Lookout for Work ios app outside of the ios App Store. Before

More information

ios Ad Hoc Provisioning Quick Guide

ios Ad Hoc Provisioning Quick Guide ios Ad Hoc Provisioning Quick Guide Applies to: Applications developed for all kinds of ios devices (iphone, ipad, ipod). For more information, visit the Mobile homepage. Summary This article is a quick

More information

Corona SDK Device Build Guide

Corona SDK Device Build Guide Corona SDK Device Build Guide November 29, 2009 2009 ANSCA Inc. All Rights Reserved. 1 ANSCA Inc. 2009 ANSCA Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

iphone Development Setup Instructions Nikhil Yadav Pervasive Health Fall 2011

iphone Development Setup Instructions Nikhil Yadav Pervasive Health Fall 2011 iphone Development Setup Instructions Nikhil Yadav Pervasive Health Fall 2011 Requirements Apple Mac Computer (Desktop or laptop) with recent snow leopard builds Apple Developer Registered Profile (create

More information

Engage ios App Administrator s Guide

Engage ios App Administrator s Guide Engage ios App Administrator s Guide Contents Contents... 1 Introduction... 2 Target Audience... 2 Devices Supported... 2 SharePoint Platforms Supported... 2 SharePoint Security & Privileges... 2 Deploying

More information

Code Signing Your Buzztouch Application By Ed Goodall Goodall)

Code Signing Your Buzztouch Application By Ed Goodall Goodall) Code Signing Your Buzztouch Application By (@) Step 1) Creating your App ID with Apple 1a) Bring up the Certificates, Identities and Profiles portal in the Apple Developer Center. 1b) Click on Identifiers.

More information

Briefcase ios 3.7. Administrator s Guide

Briefcase ios 3.7. Administrator s Guide Briefcase ios 3.7 Administrator s Guide Contents Colligo Briefcase ios Introduction... 2 Target Audience... 2 Overview... 2 Key Features... 2 Platforms Supported... 2 SharePoint Security & Privileges...

More information

Colligo Briefcase. for Good Technology. Administrator Guide

Colligo Briefcase. for Good Technology. Administrator Guide for Good Technology Administrator Guide Contents Introduction... 2 Target Audience... 2 Overview... 2 Key Features... 2 Platforms Supported... 2 SharePoint Security & Privileges... 3 for Good Technology...

More information

Configuring Push Notifications For Xamarin Forms

Configuring Push Notifications For Xamarin Forms Configuring Push Notifications For Xamarin Forms Push Notifications are one-way forms of communication offered to mobile users that some operation (like an update, deletion, or addition) has happened.

More information

Backing up Your ipad

Backing up Your ipad Backing up Your ipad November 2014 1 Table of Contents Introduction... 2 Backing up using icloud... 3 Accessing iwork files in icloud... Backing up using a computer... 10 Introduction This document has

More information

Itunes Manually Install Ios Beta 6 Without Udid Registered >>>CLICK HERE<<<

Itunes Manually Install Ios Beta 6 Without Udid Registered >>>CLICK HERE<<< Itunes Manually Install Ios Beta 6 Without Udid Registered beta versions can be installed on ios devices whose UDIDs are registered with Apple. To register a UDID, you need to be a developer or know someone

More information

Backing up Your ipad

Backing up Your ipad Backing up Your ipad August 2017 1 Table of Contents Introduction... 2 Backing up using icloud... 3 Accessing iwork files in icloud... Backing up using a computer... 10 Introduction This document has been

More information

HOW TO MAKE AN IOS APP

HOW TO MAKE AN IOS APP HOW TO MAKE AN IOS APP CREATE THE ITEMS RELATED TO THE DEVELOPER ACCOUNT WITH WHICH YOU ARE GOING TO PUBLISH You have to create a CSR file and an ios Distribution certificate. And you will be able to use

More information

Vodafone Secure Device Manager Administration User Guide

Vodafone Secure Device Manager Administration User Guide Vodafone Secure Device Manager Administration User Guide Vodafone New Zealand Limited. Correct as of June 2017. Vodafone Ready Business Contents Introduction 3 Help 4 How to find help in the Vodafone Secure

More information

Adding mobile applications

Adding mobile applications Adding mobile applications This section describes how to add, configure, and deploy mobile applications for Android, ios, and Mac OS X. You can deploy custom applications as well as applications purchased

More information

iphone Backup 1 P a g e

iphone Backup 1 P a g e iphone Backup 1 Page Backing up the iphone You have two options when it comes to backing up iphones. 1) Back up using the icloud service, this will allow you to have 5 GB worth of data to be backed up

More information

Installing and Building Apps on a Mac

Installing and Building Apps on a Mac Installing and Building Apps on a Mac 1 Scripture App Builder: Installing and Building Apps on Mac 2017, SIL International Last updated: 1 December 2017 You are free to print this manual for personal use

More information

Instructions on accessing your journal s content on your new app

Instructions on accessing your journal s content on your new app Instructions on accessing your journal s content on your new app There are three main methods to access content on your journal app depending on how you normally view your journal online. 1. Do you normally

More information

Remote Support 19.1 Web Rep Console

Remote Support 19.1 Web Rep Console Remote Support 19.1 Web Rep Console 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the property

More information

Table of Contents. VMware AirWatch: Technology Partner Integration

Table of Contents. VMware AirWatch: Technology Partner Integration Table of Contents Lab Overview - HOL-1857-08-UEM - Workspace ONE UEM - Technology Partner Integration... 2 Lab Guidance... 3 Module 1 - F5 Integration with Workspace ONE UEM (30 min)... 9 Introduction...

More information

REWARD POINTS PLUG-IN USER GUIDE

REWARD POINTS PLUG-IN USER GUIDE support@simicart.com Phone: +84.3217.1357 REWARD POINTS PLUG-IN USER GUIDE Table of Contents 1. INTRODUCTION... 3 2. HOW TO INSTALL... 5 3. HOW TO CONFIGURE... 6 3.1 For those who are using Reward Point

More information

Secure Messaging Setup Guide

Secure Messaging Setup Guide Secure Messaging Setup Guide Contents Existing Customer Setup... 1 Creating the CSM Portal... 4 For customers who have disclaimers:... 4 Creating users for secure messaging... 4 Creating a new user...

More information

Comodo SecureBox Management Console Software Version 1.9

Comodo SecureBox Management Console Software Version 1.9 6. Comodo SecureBox Management Console Software Version 1.9 Quick Start Guide Guide Version 1.9.041918 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Comodo SecureBox Management Console

More information

VMware AirWatch - Mobile Application Management and Developer Tools

VMware AirWatch - Mobile Application Management and Developer Tools VMware AirWatch - Mobile Application Management and Developer Tools Table of Contents Lab Overview - HOL-1857-05-UEM - VMware AirWatch: Mobile App Management and Developer Tools... 3 Lab Guidance... 4

More information

VMware AirWatch Integration with Apple School Manager Integrate with Apple's School Manager to automatically enroll devices and manage classes

VMware AirWatch Integration with Apple School Manager Integrate with Apple's School Manager to automatically enroll devices and manage classes VMware AirWatch Integration with Apple School Manager Integrate with Apple's School Manager to automatically enroll devices and manage classes Workspace ONE UEM v9.6 Have documentation feedback? Submit

More information

VMware Workspace ONE UEM Integration with Apple School Manager

VMware Workspace ONE UEM Integration with Apple School Manager VMware Workspace ONE UEM Integration with Apple School Manager VMware Workspace ONE UEM Integration with Apple School Manager VMware Workspace ONE UEM 1811 You can find the most up-to-date technical documentation

More information

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central Table of Contents Installation Guide... 3 eshop Account Registration in Dynamics 365 Business Central:... 3 eshop Setup

More information

If you are new to iphone development or you are considering it,

If you are new to iphone development or you are considering it, Getting Started If you are new to iphone development or you are considering it, you may feel like it is a daunting prospect. We wish we could say it s a piece of cake, but the truth is, there s a little

More information

Twixl Publisher Documentation

Twixl Publisher Documentation BUILDING APPS Twixl media Kortrijksesteenweg 1144 N, 9051 Gent (Sint-Denijs-Westrem), Belgium, VAT BE 0892.553.121 T +32 493 25 25 77 info@twixlmedia.com Copyright 2017 Twixl media. All Rights Reserved

More information

Liferay Portal 4 - Portal Administration Guide. Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer

Liferay Portal 4 - Portal Administration Guide. Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer Liferay Portal 4 - Portal Administration Guide Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer Liferay Portal 4 - Portal Administration Guide Joseph Shum Alexander Chow Redmond Mar Jorge Ferrer 1.1

More information

Mica Lodge Internet Cheat Sheet

Mica Lodge Internet Cheat Sheet Mica Lodge Internet Cheat Sheet Internet communications and telephone services are provided through satellite connection at Mica. On arrival at the lodge you will be provided with an internet account which

More information

1. NVR Connection Diagram Wizard Setup Access System Using Mobile Device Access System Using PC Client Software 5

1. NVR Connection Diagram Wizard Setup Access System Using Mobile Device Access System Using PC Client Software 5 1 1. NVR Connection Diagram 2 2. Wizard Setup 3 3. Access System Using Mobile Device 4 4. Access System Using PC Client Software 5 5. Access System Using Internet Explorer 8 6. Recording Setup 9 Motion

More information

Itunes Manually Install Ios Beta Without. Developer Account >>>CLICK HERE<<<

Itunes Manually Install Ios Beta Without. Developer Account >>>CLICK HERE<<< Itunes Manually Install Ios Beta 6.1 2 Without Developer Account How to Install ios 9 Beta Without a UDID Using ISPW to do is perform a manual IPSW based update to the device with itunes. Yes need the

More information

Verizon MDM UEM Unified Endpoint Management

Verizon MDM UEM Unified Endpoint Management Verizon MDM UEM Unified Endpoint Management Version: 1.0 Last Updated: 3/29/18 Table of Contents Unified Endpoint Management (UEM) Overview... 4 Account Dashboard... 4 Unified Endpoint Management (UEM)

More information

The purpose of this document is to help you to get started with your ipad to access Lilly resources such as , calendar, Lilly apps and more.

The purpose of this document is to help you to get started with your ipad to access Lilly resources such as  , calendar, Lilly apps and more. The purpose of this document is to help you to get started with your ipad to access Lilly resources such as email, calendar, Lilly apps and more. The setup process will take about 30 minutes to complete

More information

BoardBookit for ipad Quick Start Guide

BoardBookit for ipad Quick Start Guide BoardBookit for ipad Quick Start Guide Welcome to BoardBookit! BoardBookit for ipad allows you to easily access meetings, board books and other board related materials from the BoardBookit app on your

More information

Integrating AirWatch and VMware Identity Manager

Integrating AirWatch and VMware Identity Manager Integrating AirWatch and VMware Identity Manager VMware AirWatch 9.1.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

Steps to enable Push notification for your app:

Steps to enable Push notification for your app: User Guide Steps to enable Push notification for your app: Push notification allows an app to notify you of new messages or events without the need to actually open the application, similar to how a text

More information

CODAPPS. Testing and releasing your app for iphones. Clément Levallois

CODAPPS. Testing and releasing your app for iphones. Clément Levallois CODAPPS Testing and releasing your app for iphones Clément Levallois 2018-01-22 Table of Contents 1. Preliminary setup......................................................................... 1 2. The

More information

Save and Restore Backups using itunes File Sharing

Save and Restore Backups using itunes File Sharing Save and Restore Backups using itunes File Sharing Pictello (ipad, iphone and ipod touch). In this tutorial you will learn how to create, save and restore Pictello library backups with itunes File Sharing

More information

Table of Contents HOL-1757-MBL-6

Table of Contents HOL-1757-MBL-6 Table of Contents Lab Overview - - VMware AirWatch: Technology Partner Integration... 2 Lab Guidance... 3 Module 1 - F5 Integration with AirWatch (30 min)... 8 Getting Started... 9 F5 BigIP Configuration...

More information

Troubleshooting. Cisco WebEx Meetings Server User Guide Release 3.0 1

Troubleshooting. Cisco WebEx Meetings Server User Guide Release 3.0 1 Participants List Displays Multiple Entries for the Same User, page 2 404 Page Not Found Error Encountered, page 2 Cannot Start or Join a Meeting, page 2 SSO Does Not Work with ios Devices, page 4 Meeting

More information

Supporting ios Devices

Supporting ios Devices Supporting ios Devices 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their respective owners.

More information

Installing and Building Apps on a Mac

Installing and Building Apps on a Mac Installing and Building Apps on a Mac Last updated: 10 May 2017 1 Contents 1. Introduction... 3 2. Installing Prerequisites for Android... 3 2.1. Java SE Development Kit (JDK)... 3 2.2. Installing Android

More information

Application / Document Management. MaaS360 e-learning Portal Course 3

Application / Document Management. MaaS360 e-learning Portal Course 3 Application / Document Management MaaS360 e-learning Portal Course 3 Agenda > Application Management Overview MaaS360 Workflows Device Workflows > Document Management Overview MaaS360 Workflows Document

More information

How to Create a Signed QuickAdd Package

How to Create a Signed QuickAdd Package Items needed to complete this task: Apple Developer account. (https://developer.apple.com) Mac Computer Section 1. Create a Certificate Signing Request (CSR) A Certificate Signing Request or CSR is a specially

More information

Register by completing the form, or connecting via your GitHub or Google account.

Register by completing the form, or connecting via your GitHub or Google account. SDL Developer Portal Registration Guide In order to register an application on the SDL developer portal, you must first create both a developer and company profile. Developer Profile Registration To create

More information

Troubleshooting. Cisco WebEx Meetings Server User Guide Release 2.7 1

Troubleshooting. Cisco WebEx Meetings Server User Guide Release 2.7 1 Participants List Displays Multiple Entries for the Same User, page 2 Internet Explorer Browser Not Supported, page 2 404 Page Not Found Error Encountered, page 2 Cannot Start or Join Meeting, page 3 SSO

More information

Supporting Apple ios Devices

Supporting Apple ios Devices Supporting Apple ios Devices 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

Table of Contents. I. How do I register for a new account? II. How do I log in? (I already have a MyJohnDeere.com account.)

Table of Contents. I. How do I register for a new account? II. How do I log in? (I already have a MyJohnDeere.com account.) Quick Start Guide If you are an App Developer, you can get started by adding a new app and configuring it to consume Deere APIs on developer.deere.com. Use this Quick Start Guide to find and try our APIs.

More information

Pearson System of Courses

Pearson System of Courses Pearson System of Courses Deploy with Apple Configurator for ios Copyright 2017 Pearson, Inc. or its affiliates. All rights reserved. Table of Contents Deployment Process Overview 3 Prerequisites and Assumptions

More information

VMware AirWatch Integration with Apple School Manager Integrate with Apple's School Manager to automatically enroll devices and manage classes

VMware AirWatch Integration with Apple School Manager Integrate with Apple's School Manager to automatically enroll devices and manage classes VMware AirWatch Integration with Apple School Manager Integrate with Apple's School Manager to automatically enroll devices and manage classes AirWatch v9.3 Have documentation feedback? Submit a Documentation

More information

Deploying Lookout with IBM MaaS360

Deploying Lookout with IBM MaaS360 Lookout Mobile Endpoint Security Deploying Lookout with IBM MaaS360 February 2018 2 Copyright and disclaimer Copyright 2018, Lookout, Inc. and/or its affiliates. All rights reserved. Lookout, Inc., Lookout,

More information

Setting Up Your WSU Apple ipad Mini. Your ipad Mini should be plugged in and ready to setup.

Setting Up Your WSU Apple ipad Mini. Your ipad Mini should be plugged in and ready to setup. Setting Up Your WSU Apple ipad Mini Page 1 of 5 Your ipad Mini should be plugged in and ready to setup. ATTENTION: If using an existing Apple ID, students may not use an Apple ID that they share with anyone

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

How Do I Sync My New Iphone To My Icloud. Account >>>CLICK HERE<<<

How Do I Sync My New Iphone To My Icloud. Account >>>CLICK HERE<<< How Do I Sync My New Iphone To My Icloud Account If you back up your iphone, ipad, or ipod touch, you'll have a copy of your Backups let you transfer data from your last device to your new one. In case

More information

Connect to Wireless, certificate install and setup Citrix Receiver

Connect to Wireless, certificate install and setup Citrix Receiver Connect to Wireless, certificate install and setup Citrix Receiver This document explains how to connect to the Wireless Network, certificate and access applications using Citrix Receiver on a Bring Your

More information

SecuriSync Get Started Guide for Mac

SecuriSync Get Started Guide for Mac SecuriSync Get Started Guide for Mac WHAT IS SECURISYNC? SecuriSync is a cloud backup and file sharing service. SecuriSync allows you to easily backup and sync files between multiple computers, the SecuriSync

More information

IOS Device Setup for MDM

IOS Device Setup for MDM Page: 1 IOS Device Setup for MDM The following instructions and images are based on setting up and registering an ipad 2 but will work with any IOS device (ipad, ipod or iphone) being registered to the

More information

Remote Support Web Rep Console

Remote Support Web Rep Console Remote Support Web Rep Console 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

Remote Access Application Viewer User Guide. Version 2.3

Remote Access Application Viewer User Guide. Version 2.3 Remote Access Application Viewer User Guide Version 2.3 Table of Contents Table of Contents... 2 Logging into Application Viewer... 4 Setting up your browser for the first time... 8 Internet Explorer...

More information

Trial Account Quick Start Guide

Trial Account Quick Start Guide Trial Account Quick Start Guide Version 5.2 April 2015 Edition 2002-2015 ICS Learning Group 1 Disclaimer ICS Learning Group makes no representations or warranties with respect to the contents or use of

More information

Pearson System of Courses (PSC) Deploying PSC with Apple Configurator for ios

Pearson System of Courses (PSC) Deploying PSC with Apple Configurator for ios Pearson System of Courses (PSC) Deploying PSC with Apple Configurator for ios Copyright 2016 Pearson, Inc. or its affiliates. All rights reserved. Page 1 Table of Contents Deployment Process Overview...3

More information

How to Join Skype Meetings

How to Join Skype Meetings How to Join Skype Meetings Scroll through to find the device you are using: Windows, Skype App, Mac or iphone. Windows 1. Open the email / calendar request that you received from your host and select the

More information

How to Navigate the Challenge Runner Website

How to Navigate the Challenge Runner Website How to Navigate the Challenge Runner Website How to Join Challenge Runner Create an Account To join the Maroon Moves Walking Challenge 1. Click on the Maroon Moves Challenge Runner Link: https://www.challengerunner.com/login/challenge/3e64ro-1h81

More information

NotifyMDM Device Application User Guide Installation and Configuration for ios with TouchDown

NotifyMDM Device Application User Guide Installation and Configuration for ios with TouchDown NotifyMDM Device Application User Guide Installation and Configuration for ios with TouchDown NotifyMDM for ios Devices, Version 3.x NotifyMDM for ios with TouchDown 1 Table of Contents NotifyMDM for ios

More information

Building a Simple Workflow Application for the Sybase Unwired Server [Part 3]

Building a Simple Workflow Application for the Sybase Unwired Server [Part 3] MOBILITY Building a Simple Workflow Application for the Sybase Unwired Server [Part 3] By Mark Gearhart, SAP In the third of a 3-part series, we build a simple workflow application for the Sybase Unwired

More information

Guide to Deploying VMware Workspace ONE with VMware Identity Manager. SEP 2018 VMware Workspace ONE

Guide to Deploying VMware Workspace ONE with VMware Identity Manager. SEP 2018 VMware Workspace ONE Guide to Deploying VMware Workspace ONE with VMware Identity Manager SEP 2018 VMware Workspace ONE You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

ipad ereader User s Guide

ipad ereader User s Guide ipad ereader User s Guide MAY 2014 Table of Contents General information... 1 About Professional ebook... 1 About this Guide... 1 How does the Professional ebook System work?... 1 Where can I learn more

More information

Lesson 1: Hello ios! 1

Lesson 1: Hello ios! 1 Contents Introduction xxv Lesson 1: Hello ios! 1 ios Developer Essentials 1 A Suitable Mac 1 A Device for Testing 2 Device Differences 2 An ios Developer Account 4 The Official ios SDK 6 The Typical App

More information

Android Rep Console

Android Rep Console Android Rep Console 2.2.10 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their respective owners.

More information

Integration with Apple Configurator 2. VMware Workspace ONE UEM 1902

Integration with Apple Configurator 2. VMware Workspace ONE UEM 1902 Integration with Apple Configurator 2 VMware Workspace ONE UEM 1902 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

Getting Started. Opening TM Control Panel. TM Control Panel User Guide Getting Started 1

Getting Started. Opening TM Control Panel. TM Control Panel User Guide Getting Started 1 TM Control Panel User Guide Getting Started 1 Getting Started Opening TM Control Panel To open TM Control Panel (CP), perform the following steps: 1 In the browser address field, type https://cp.netmyne.net.

More information

Manual Software Ios 6 For Ipod Touch 4 Ios 6 >>>CLICK HERE<<<

Manual Software Ios 6 For Ipod Touch 4 Ios 6 >>>CLICK HERE<<< Manual Software Ios 6 For Ipod Touch 4 Ios 6 Aug 25, 2014. 37600 Views 3 Replies Latest reply: Aug 25, 2014 6:49 PM by Texas Mac Man If you do not have a Software Update option present on your idevice,

More information

VSP18 Venafi Security Professional

VSP18 Venafi Security Professional VSP18 Venafi Security Professional 13 April 2018 2018 Venafi. All Rights Reserved. 1 VSP18 Prerequisites Course intended for: IT Professionals who interact with Digital Certificates Also appropriate for:

More information

Sophos Mobile as a Service

Sophos Mobile as a Service startup guide Product Version: 8 Contents About this guide... 1 What are the key steps?... 2 Change your password... 3 Change your login name... 4 Activate Mobile Advanced licenses...5 Check your licenses...6

More information

IBM Smart Cloud Entry Hosted Trial Guide 3.2

IBM Smart Cloud Entry Hosted Trial Guide 3.2 IBM Smart Cloud Entry Hosted Trial Guide 3.2 SmartCloud Entry Team: Cloud Solutions Beta cloudbta@us.ibm.com Page 1 Table of Contents Chapter 1: Introduction...3 Chapter 2: Getting Started...4 Request

More information

Telenor MDM v x Zero Touch Enrollment

Telenor MDM v x Zero Touch Enrollment Telenor MDM v.5.38.0x Zero Touch Enrollment Telenor Mobile Device Management Document information Date: 22.11.2018 Version: 5.38.0x EN Version-history Version Date Comments Edited by 1.0 22.11.2018 Format

More information

BluePay Apple Pay User Guide

BluePay Apple Pay User Guide BluePay Apple Pay User Guide This documentation contains a step-by-step guide on getting set up to accept In-App Apple Pay transactions within your ios app through a BluePay gateway account. If you are

More information

Cisco Partner Support Service (PSS) User Guide - User Registration. April 07,

Cisco Partner Support Service (PSS) User Guide - User Registration. April 07, Cisco Partner Support Service (PSS) User Guide - User Registration April 07, 2017 Corporate Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com 1-1 Table

More information

Things to Know About Using CoreLogic Fusion Experience

Things to Know About Using CoreLogic Fusion Experience Things to Know About Using CoreLogic Fusion Experience What is CoreLogic Fusion Experience? CoreLogic Fusion Experience is a free application you can download from the itunes App Store that makes it possible

More information

WebEx. Web Conferencing Tool. Fordham IT

WebEx. Web Conferencing Tool. Fordham IT WebEx Web Conferencing Tool Faculty + Staff User Guide Fordham IT Contents WebEx Faculty + Staff User Guide Schedule a Meeting Using the WebEx Meeting Site 1 WebEx Scheduling Template 2 Join a Meeting

More information

CinePlay! User Manual!

CinePlay! User Manual! CinePlay User Manual 1 CinePlay! User Manual! CinePlay is a professional Mac media player complete with timecode overlays, markers, masking, safe areas and much more. It is ideal for dailies, portfolios,

More information

Guide to Deploying VMware Workspace ONE. VMware Identity Manager VMware AirWatch 9.1

Guide to Deploying VMware Workspace ONE. VMware Identity Manager VMware AirWatch 9.1 Guide to Deploying VMware Workspace ONE VMware Identity Manager 2.9.1 VMware AirWatch 9.1 Guide to Deploying VMware Workspace ONE You can find the most up-to-date technical documentation on the VMware

More information

Mastering Xcode for iphone OS Development Part 2. Marc Verstaen Sr. Manager, iphone Tools

Mastering Xcode for iphone OS Development Part 2. Marc Verstaen Sr. Manager, iphone Tools Mastering Xcode for iphone OS Development Part 2 Marc Verstaen Sr. Manager, iphone Tools 2 Tale of Two Sessions Part 1: Orientation: Tour of complete development cycle Part 2: Mastery: Details of several

More information

Pulse Workspace Appliance. Administration Guide

Pulse Workspace Appliance. Administration Guide Pulse Workspace Appliance Administration Guide Product Release 2.0, 1743.1 Document Revisions 1.0 Published Date January 2018 Pulse Secure, LLC 2700 Zanker Road, Suite 200 San Jose, CA 95134 The Pulse

More information

Remote Access Application Viewer User Guide. Version 2.5

Remote Access Application Viewer User Guide. Version 2.5 Remote Access Application Viewer User Guide Version 2.5 Table of Contents Table of Contents... 2 Logging into Application Viewer... 4 Setting up your browser for the first time... 8 Internet Explorer...

More information

Parallels Mac Management for Microsoft SCCM

Parallels Mac Management for Microsoft SCCM Parallels Mac Management for Microsoft SCCM Licensing Guide v6.1 Parallels International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 672 20 30 www.parallels.com Copyright 1999-2017 Parallels

More information

Admin Guide Hosted Applications

Admin Guide Hosted Applications Admin Guide Hosted Applications DOCUMENT REVISION DATE: December, 2010 Hosted Applications Admin Guide / Table of Contents Page 2 of 32 Table of Contents OVERVIEW... 3 1. ABOUT THE GUIDE... 3 1.1 AUDIENCE

More information

ncrypted Cloud works on desktops and laptop computers, mobile devices, and the web.

ncrypted Cloud works on desktops and laptop computers, mobile devices, and the web. OS X User Manual Welcome to ncrypted Cloud! ncrypted Cloud is a Security Collaboration application that uses Industry Standard Encryption Technology (AES-256 bit encryption) to secure files stored in the

More information

Skynax. Mobility Management System. Installation Guide

Skynax. Mobility Management System. Installation Guide Skynax Mobility Management System Installation Guide Disclaimer Honeywell International Inc. ( HII ) reserves the right to make changes in specifications and other information contained in this document

More information

ituple Users Guide Version 1.0.1

ituple Users Guide Version 1.0.1 ituple Users Guide Version 1.0.1 Table of Contents Introduction To ituple 2 Getting Started 2 Logging In 3 Syncing With xtuple PostgreSQL Databases.. 5 Viewing Data 8 Searching 9 Data Security. 11 Additional

More information

akkadian Provisioning Manager Express

akkadian Provisioning Manager Express akkadian Provisioning Manager Express Version 4.11.04 Release Notes September 14 th, 2017 Copyright and Trademarks: I. Copyright: This website and its content is copyright 2017 Akkadian Labs, LLC. All

More information

EMS MASTER CALENDAR Installation Guide

EMS MASTER CALENDAR Installation Guide EMS MASTER CALENDAR Installation Guide V44.1 Last Updated: May 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

More information

Administrator Manual. Last Updated: 15 March 2012 Manual Version:

Administrator Manual. Last Updated: 15 March 2012 Manual Version: Administrator Manual Last Updated: 15 March 2012 Manual Version: 1.6 http://www.helpdeskpilot.com Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

More information

Zephyr Cloud for HipChat

Zephyr Cloud for HipChat June 25 Zephyr Cloud for HipChat Z e p h y r, 7 7 0 7 G a t e w a y B l v d S t e 1 0 0, N e w a r k, C A 9 4 5 6 0, U S A 1 - Overview How this guide will help Zephyr Cloud for HipChat guide will guide

More information

QuickStart Guide for Mobile Device Management. Version 8.7

QuickStart Guide for Mobile Device Management. Version 8.7 QuickStart Guide for Mobile Device Management Version 8.7 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF

More information

Udid Registration Or A Developer Account

Udid Registration Or A Developer Account Itunes Manually Install Ios Beta 6 Without Udid Registration Or A Developer Account Yes you can install ios 9 beta without developer account or registered UDID Simply connect your ios device to itunes

More information

ios Supervised Devices

ios Supervised Devices www.novell.com/documentation ios Supervised Devices ZENworks Mobile Management 3.2.x October 2015 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use

More information

C-Assist Set up Guide

C-Assist Set up Guide C-Assist Set up Guide Wireless connection to and projection from PCs Macs and Mobile Devices CASIO COMPUTER CO., LTD. Contents Heading Wirelessly Connecting your PC/Mac to your Casio Projector Page Process

More information