GETTING STARTED. AppSher In-App Analytics for ios

Size: px
Start display at page:

Download "GETTING STARTED. AppSher In-App Analytics for ios"

Transcription

1 GETTING STARTED AppSher In-App Analytics for ios AppSher Analytics Tool for ios enables to analyze all consumer-activities of your application on the users device and edits all data into AppSher Analytics System. The basic programming background is very lean. The set-up is possible within 5 minutes. AppSher SDK for ios connects the AppSher online platform with all users of your application. This enables you to have an access to all user-activities, in-app-purchases and to specify further events for having a detailed analysis. All metrics will show you the cost-efficiency of your app, all optimization possibilities, the system arrangement, user-frequency, effectiveness and decision about all marketingsources and a lot more interesting individual indicators.

2 Index Prepare your app 3 Setup your app into the dashboard 3 Where to find your AppSher SDK 4 Integration of SDK into your app 5 Add to you project as following 5 Example integration of the AppSher SDK 6 App Analytics Tracking-Parameter 7 App opening (open) 7 App closes (close) 7 In-App SignUp Event with refund (e.g. newsletter-subscribes) 7 In-App purchase event with refund (in-app-purchase) 7 Transmission of a page-view-event (page-view) 7 FAQ 8

3 Prepare your app To use the AppSher Analytics Tool and App Download Tracking, you need to integrate the AppSher Tracking SDK into the application. Setup your app into the dashboard First you need to add your app as a new app to the AppSher tracking system Go to and log in Go to Mobile Apps and click on New App Choose an app-name and add the link to your application Click on create new app Now you are ready to start the SDK integration! If you should have any queries or questions please contact your account manager or to support@appsher.com.

4 Where to find your AppSher SDK For a simple integration, please follow these steps: 1 Go to and log in 2 3 Got to Mobile Apps and click to your app Click to download SDK and integration-manual The.zip file contains: AppSherAnalyticsREADMEv1.31.pdf UniqueAppParameter.txt AppSher/Tracking.h File for integration-guide for AppSher Analytics. Receiving your unique SDK Salt, and your app-name, which to use for integration of this SDK. Q.v. 2-e. This mandatory header-file has all methods for AppSher Analytics. AppSher/libTracking.a Mandatory library for AppSher s collection and reporting code. AppSher/libTrackingSim.a Mandatory library for AppSher s collection and reporting code for Apple s simulator-mode

5 Integration of SDK into your app The binary of this SDK (libtracking.a) was compiled for armv7 und ios 4.3+ and can be used in this form as static library for all types of applications on iphone, ipad and ipod Touch having the ios version Add to you project as following The file libtracking.a need to be added to your project directory and to your Xcode project (in Xcode: Targets / Build Phases / Link Binary With Libaries / + ). CAUTION: iphone targeting and Simulator targeting need different binaries from the Tracking.a file. Please mind to import the right one. As a developer it is recommendable to import both versions. Copy the file Tracking.h into your project-folder and integrate this file also into the Xcode-project. The best way is to set up a collection of all required libraries (e.g. Tracking.h) into one common folder (e.g. Support) and to adjust the headersearch-path from "Support/**" (in Xcode: Targets / Build Settings / Header Search Paths) For apps that need an ios4 compatibility the "-ObjC linker flag" needs to be set up, to avoid lifetime-bugs concerning missing selectors. Q.v. Please add all frameworks as following, to configure an efficient In-App tracking: SystemConfiguration.framework AdSupport.Framework Foundation.Framework

6 Example integration of the AppSher SDK The configuration of AppSher's SDK is effected by the Info.plist file of your ios-app. Please add all notified information s from UniqueAppParameter.txt file to this file. The best way to do this is to open Info.plist through your Xcode-developer environment and add a new row by doing a right mouse click in the menu "new row". Please look out for all stored variables. All yellow marked variables should be replaced of your individual ones. You will find them in: UniqueAppParameter.txt, which you have downloaded from the.zip file. Any queries please ask your account manager AppID: Salt: Please provide the App-ID from your AppSher Account ( ). Insert the salt of the included app from the AppSher Account. TrackingDemoAppDelegate.m // import the tracking header file #import window; - (BOOL)application:(UIApplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions { // initialize the AppSher Tracking SDK [Tracking sharedinstance]; [window makekeyandvisible]; return YES;

7 App Analytics Tracking-Parameter App opening (open) - (void)applicationdidbecomeactive:(uiapplication *)application { NSLog(@"applicationDidBecomeActive"); // delegate all calls to applicationdidbecomeactive to tracking open [[Tracking sharedinstance] open]; App closes (close) - (void)applicationdidenterbackground:(uiapplication *)application { NSLog(@"applicationDidEnterBackground"); // delegate all calls to applicationdidenterbackground to tracking close [[Tracking sharedinstance] close]; In-App SignUp Event with refund (e.g. newsletter-subscribes) - (IBAction)signupClicked:(id)sender { // Example for sending a signup event [[Tracking sharedinstance] signupwithamount:@"8.15" currency:@"eur" description:@"signup Description" andviewname:@"signup-view-name"]; Note: The currency value must be in ISO 4217 size. In-App purchase event with refund (in-app-purchase) - (IBAction)inAppPurchaseClicked:(id)sender { // Example for sending a inapppurchasewithamount event [[Tracking sharedinstance] inapppurchasewithamount:@"123.45" currency:@"eur" description:@"purchase-description" andviewname:@"in-app-purchase-view-name"]; Note: The currency value must be in ISO 4217 size. Transmission of a page-view-event (page-view) - (IBAction)pageViewClicked:(id)sender { // Example for sending a pageview event [[Tracking sharedinstance] pageview:@"view-name"];

8 FAQ What happens within the AppSher ios SDK? The Appsher ios SDK send out activity information s of your App to the Appsher System, for all detailed analyses on relevant parameters. The SDK takes care about the best connectivity (WLAN) and about a sufficient battery capacity of the used device. After this checkup all collected events are bundled and transmitted to the Appsher-System. How much memory capacity needs the AppSher ios SDK? The AppSher SDK needs approx. 1,3 MB memory capacity. How many data is send out by the Appsher Agent for every session? All information s are transmitted via JSON-Transport to AppSher. Key figures are added in the holding stack, to every view request in your app, until the AppSher ios SDK is able to complete all accumulations. (Q.v. What happens within the AppSher ios SDK? ). For every view 100 Byte is added into the holding stack; the size of the outcomming request depends on how many data are collected until they can be send to the AppSher System. Because of an efficient zipped data-package, this request is generally not bigger than 1KB. Which data are send by the AppSher Agent? The SDK send information about the actual view e.g. information s about the used device (identifier, resolution), timeline of the released event (view, open, close, install, in-app-purchase etc.) and the given site- and event-indication. Which Xcode version is required? The AppSher Analytics SDK for ios requires an Xcode version Does this SDK recall the UDID? No, this version of the AppSher Analytics SDK recalls not the ios UDID.

9 Historie Version Admin Änderung Datum 1.2 M Initial P Funktions-Signaturen, Update-Funktion 1.31 S Auf neue SDK-Version angepasst

Tag Specification Document

Tag Specification Document Measuring the digital world. DIGITAL ANALYTIX ios Mobile Application Measurement Tag Specification Document March 2012 FOR FURTHER INFORMATION, PLEASE CONTACT: comscore, Inc. +1 866 276 6972 sdksupport@comscore.com

More information

eggon SDK for ios 7 Integration Instructions

eggon SDK for ios 7 Integration Instructions eggon SDK for ios 7 Integration Instructions The eggon SDK requires a few simple steps in order to be used within your ios 7 application. Environment This guide assumes that a standard ios Development

More information

ADITION ios Ad SDK Integration Guide for App Developers

ADITION ios Ad SDK Integration Guide for App Developers ADITION ios Ad SDK Integration Guide for App Developers SDK Version 15 as of 2013 07 26 Copyright 2012-2013 ADITION technologies AG. All rights reserved. Page 1/8 Table of Contents 1 Ad SDK Requirements...3

More information

Knappsack ios Build and Deployment Guide

Knappsack ios Build and Deployment Guide Knappsack ios Build and Deployment Guide So you want to build and deploy an ios application to Knappsack? This guide will help walk you through all the necessary steps for a successful build and deployment.

More information

Your First App Store Submission

Your First App Store Submission Your First App Store Submission Contents About Your First App Store Submission 4 At a Glance 5 Enroll in the Program 5 Provision Devices 5 Create an App Record in itunes Connect 5 Submit the App 6 Solve

More information

imag Pro Card Reader Instructions

imag Pro Card Reader Instructions imag Pro Card Reader Instructions You will need: q ios device with 30-pin dock connector: older ipad, iphone, or ipod touch models any current device (with lightning connectors) will not work q A WiFi

More information

ios Development Tutorial Nikhil Yadav CSE 40816/60816: Pervasive Health 09/09/2011

ios Development Tutorial Nikhil Yadav CSE 40816/60816: Pervasive Health 09/09/2011 ios Development Tutorial Nikhil Yadav CSE 40816/60816: Pervasive Health 09/09/2011 Healthcare iphone apps Various apps for the iphone available Diagnostic, Diet and Nutrition, Fitness, Emotional Well-being

More information

Getting Started with the Naviance Student Mobile App

Getting Started with the Naviance Student Mobile App Getting Started with the Naviance Student Mobile App Naviance Student is a college and success planning tool designed to help high school students plan their college search, communicate with their guidance

More information

1 от 6 8.01.2012 22:45

1 от 6 8.01.2012 22:45 Welcome, Yuriy Donev Edit Profile Log out Provisioning Portal : Astea Solutions AD Go to ios Dev Center Manage History How To Assigning Apple Devices to your Team The Devices section of the ios Provisioning

More information

Foglight Application Performance Monitoring SaaS Edition 6.1.0. Mobile App Developer Guide for ios Platforms

Foglight Application Performance Monitoring SaaS Edition 6.1.0. Mobile App Developer Guide for ios Platforms Foglight Application Performance Monitoring SaaS Edition 6.1.0 Mobile App Developer Guide for ios Platforms 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by

More information

Please note that this SDK will only work with Xcode 3.2.5 or above. If you need an SDK for an older Xcode version please email support.

Please note that this SDK will only work with Xcode 3.2.5 or above. If you need an SDK for an older Xcode version please email support. Mobile Application Analytics ios SDK Instructions SDK version 3.0 Updated: 12/28/2011 Welcome to Flurry Analytics! This file contains: 1. Introduction 2. Integration Instructions 3. Optional Features 4.

More information

Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7

Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7 Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7 Jeff Linwood 1st Chapter, Early Release Introduction... 3 Prerequisites... 3 Introduction to Mobile Apps...

More information

OS X LION SET UP THE SYSTEM

OS X LION SET UP THE SYSTEM OS X LION SET UP THE SYSTEM OS X Lion Set Up the System Last Edited: 2012-07-10 1 Personalize the Interface... 3 Organize the Desktop... 3 Configure Apple Trackpad... 4 Configure Apple Magic Mouse... 6

More information

Wind River Financial iprocess Setup Guide for IOS Devices

Wind River Financial iprocess Setup Guide for IOS Devices Wind River Financial iprocess Setup Guide for IOS Devices (Requires ios 4.3 or later. Compatible with iphone, ipad, and ipod touch. This app is optimized for iphone 5.) Table of Contents (Clickable Links):

More information

ITP 342 Mobile App Development. Testing & Deployment

ITP 342 Mobile App Development. Testing & Deployment ITP 342 Mobile App Development Testing & Deployment Development You have been developing apps. Now you want to put them on the App Store. Before doing so, test your apps! Apple Developer - https://developer.apple.com

More information

TestFlight FAQ. 2014-7-17 Apple Inc.

TestFlight FAQ. 2014-7-17 Apple Inc. TestFlight FAQ apple 2014-7-17 Apple Inc. 2014 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means,

More information

Using Free PGI and Xcode

Using Free PGI and Xcode Using Free PGI and Xcode Free PGI relies on several Xcode components such as system header files, assembler, linker, and system libraries. For this reason, you must install Xcode and the Xcode command

More information

Mercury VirtualTerminal ios Application

Mercury VirtualTerminal ios Application Mercury VirtualTerminal ios Application Quick Reference Guide v2.1 Contents Introduction... 3 Downloading the application from itunes:... 3 Launching the application:... 4 Login and configuration:... 5

More information

Microsoft Tag Scanning SDK for iphone & Android Apps

Microsoft Tag Scanning SDK for iphone & Android Apps Microsoft Tag Scanning SDK for iphone & Android Apps This document provides an overview of the functionality of the Microsoft Tag Scanning SDK, used to integrate Tag scanning into mobile apps on the ios

More information

Google Analytics and Google Analytics Premium: limits and quotas

Google Analytics and Google Analytics Premium: limits and quotas Table Of Contents Data collection & Processing limits Accounts and Profiles Reports Admin Area Google Analytics data fields Lengths Google Analytics API Data collection & Processing limits 10 million hits

More information

Technical Manual Login for ios & Android

Technical Manual Login for ios & Android Technical Manual Login for ios & Android Version 15.1 November 2015 Index 1 The DocCheck App Login....................................... 3 1.1 App Login Basic The classic among apps..........................

More information

itunes Connect App Analytics Guide v1

itunes Connect App Analytics Guide v1 itunes Connect App Analytics Guide v1 apple 2015-04-22 Apple Inc. 2015 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any

More information

L.E.A.P.S Electronic Freight Billing System Installation Guide

L.E.A.P.S Electronic Freight Billing System Installation Guide L.E.A.P.S Electronic Freight Billing System Installation Guide Ryder Revision V2.0 June 6th 2013 Reviser: N. West 1 FAQ: What is LEAPS? LEAPS (Logistics Electronic Automated Processing System) is a freight

More information

Quick Guide for Using Beltone MFi Hearing Aids with your iphone

Quick Guide for Using Beltone MFi Hearing Aids with your iphone Quick Guide for Using Beltone MFi Hearing Aids with your iphone Quick setup and usage guide for Made for iphone (MFi) functionality Hardware supported Beltone MFi hearing instruments support MFi functionality

More information

itunes Connect Developer Guide

itunes Connect Developer Guide itunes Connect Developer Guide Contents Introduction 9 How to Use This Document 9 See Also 10 Before You Begin 11 Following Apple Guidelines 11 Creating Assets with the Correct Specifications 11 App Icons,

More information

Database FAQs - SQL Server

Database FAQs - SQL Server Database FAQs - SQL Server Kony Platform Release 5.0 Copyright 2013 by Kony, Inc. All rights reserved. August, 2013 This document contains information proprietary to Kony, Inc., is bound by the Kony license

More information

ViewPoint Mobile Quick Start Guide

ViewPoint Mobile Quick Start Guide ViewPoint Mobile Quick Start Guide Step 1 Download the ViewPoint Mobile application. This MUST be done on the ios device, NOT the computer you sync your ios device with. The application will automatically

More information

Northeast Bank Mobile Deposit Service FAQ

Northeast Bank Mobile Deposit Service FAQ Northeast Bank Mobile Deposit Service FAQ What is Northeast Bank Mobile Deposit? What items can be deposited via Northeast Bank Mobile Deposit service? What items cannot be deposited through Northeast

More information

Sophos Mobile Control Startup guide. Product version: 3

Sophos Mobile Control Startup guide. Product version: 3 Sophos Mobile Control Startup guide Product version: 3 Document date: January 2013 Contents 1 About this guide...3 2 What are the key steps?...5 3 Log in as a super administrator...6 4 Activate Sophos

More information

Mobile App Sensor Documentation (English Version)

Mobile App Sensor Documentation (English Version) Mobile App Sensor Documentation (English Version) Mobile App Sensor Documentation (English Version) Version: 1.2.1 Date: 2015-03-25 Author: email: Kantar Media spring support@spring.de Content Mobile App

More information

Access the TCNJ Palo Alto Networks VPN using the GlobalProtect VPN client

Access the TCNJ Palo Alto Networks VPN using the GlobalProtect VPN client Access the TCNJ Palo Alto Networks VPN using the GlobalProtect VPN client June 2014 Table of Contents Introduction 1 Determine the Windows Operating System Version 2 Install the GlobalProtect VPN client

More information

Networking & Internet 2010-07-06

Networking & Internet 2010-07-06 Wireless Enterprise App Distribution Networking & Internet 2010-07-06 Apple Inc. 2010 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted,

More information

ios Team Administration Guide (Legacy)

ios Team Administration Guide (Legacy) ios Team Administration Guide (Legacy) Contents About ios Development Team Administration 5 At a Glance 6 Team Admins Manage Team Membership and Assign Roles in the Member Center 6 Development Devices

More information

Transcription FAQ. Can Dragon be used to transcribe meetings or interviews?

Transcription FAQ. Can Dragon be used to transcribe meetings or interviews? Transcription FAQ Can Dragon be used to transcribe meetings or interviews? No. Given its amazing recognition accuracy, many assume that Dragon speech recognition would be an ideal solution for meeting

More information

ios App for Mobile Website! Documentation!

ios App for Mobile Website! Documentation! ios App for Mobile Website Documentation What is IOS App for Mobile Website? IOS App for Mobile Website allows you to run any website inside it and if that website is responsive or mobile compatible, you

More information

Avira Secure Backup INSTALLATION GUIDE. HowTo

Avira Secure Backup INSTALLATION GUIDE. HowTo Avira Secure Backup INSTALLATION GUIDE HowTo Table of contents 1. Introduction... 3 2. System Requirements... 3 2.1 Windows...3 2.2 Mac...4 2.3 ios (iphone, ipad and ipod touch)...4 3. Avira Secure Backup

More information

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers 1 INTRODUCTION GOAL OBJECTIVES MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS OVERVIEW

More information

Installation Instructions

Installation Instructions Avira Secure Backup Installation Instructions Trademarks and Copyright Trademarks Windows is a registered trademark of the Microsoft Corporation in the United States and other countries. All other brand

More information

Pogo> User Guide. for iphone, ipad and ipod touch

Pogo> User Guide. for iphone, ipad and ipod touch Pogo> User Guide for iphone, ipad and ipod touch Introduction to Pogo> This document provides detailed information on how best to use the Pogo> application to benefit your business. The intention is to

More information

Sophos Mobile Control Startup guide. Product version: 3.5

Sophos Mobile Control Startup guide. Product version: 3.5 Sophos Mobile Control Startup guide Product version: 3.5 Document date: July 2013 Contents 1 About this guide...3 2 What are the key steps?...5 3 Log in as a super administrator...6 4 Activate Sophos Mobile

More information

Xcode Project Management Guide. (Legacy)

Xcode Project Management Guide. (Legacy) Xcode Project Management Guide (Legacy) Contents Introduction 10 Organization of This Document 10 See Also 11 Part I: Project Organization 12 Overview of an Xcode Project 13 Components of an Xcode Project

More information

Frequently Asked Questions for the USA TODAY e-newspaper

Frequently Asked Questions for the USA TODAY e-newspaper Frequently Asked Questions for the USA TODAY e-newspaper Navigating the USA TODAY e-newspaper A look at the toolbar Toolbar Functions, Buttons, and Descriptions The tab marked Contents will take the e-reader

More information

Bluetooth 4.0 Solutions for Apple ios Devices. Bluegiga Technologies

Bluetooth 4.0 Solutions for Apple ios Devices. Bluegiga Technologies Bluetooth 4.0 Solutions for Apple ios Devices Bluegiga Technologies Agenda Introduction How to build Bluetooth 4.0 applications Compatible Bluegiga products What is Bluetooth low energy? Summary Introduction

More information

M, N, O F, G, H. network request, 101 ParseFacebookUtilities SDK, 100 profile, 100 user_about_me, 101 -(void)updateindicator, 101

M, N, O F, G, H. network request, 101 ParseFacebookUtilities SDK, 100 profile, 100 user_about_me, 101 -(void)updateindicator, 101 A, B Access control list (ACL), 187 Account category favorites category lists, 4 orders category, 4 Account settings notification, 5 sales and refund policy, 5 ACL. See Access control list (ACL) Add product

More information

CONTACTS SYNCHRONIZER FOR IPAD USER GUIDE

CONTACTS SYNCHRONIZER FOR IPAD USER GUIDE User Guide CONTACTS SYNCHRONIZER FOR IPAD USER GUIDE Product Version: 1.0 CONTENTS 1. INTRODUCTION...4 2. INSTALLATION...5 2.1 DESKTOP INSTALLATION...5 2.2 IPAD INSTALLATION...9 3. USING THE CONTACTS SYNCHRONIZER

More information

Gathering customer information from a mobile application James Adams, SAS Institute Inc.

Gathering customer information from a mobile application James Adams, SAS Institute Inc. Paper SAS2840-2016 Gathering customer information from a mobile application James Adams, SAS Institute Inc. ABSTRACT SAS Customer Intelligence 360 is the new cloud-based customer data gathering application

More information

Salesforce Mobile Push Notifications Implementation Guide

Salesforce Mobile Push Notifications Implementation Guide Salesforce.com: Summer 14 Salesforce Mobile Push Notifications Implementation Guide Last updated: May 6, 2014 Copyright 2000 2014 salesforce.com, inc. All rights reserved. Salesforce.com is a registered

More information

Copyright Notice. Mobile Testing Enterprise 7.3. September 2015. Copyright 1995-2015 Keynote LLC. All rights reserved.

Copyright Notice. Mobile Testing Enterprise 7.3. September 2015. Copyright 1995-2015 Keynote LLC. All rights reserved. Mobile Testing Enterprise UIAutomation Compatibility Mobile Testing Enterprise 7.3 September 2015 Copyright Notice Copyright 1995-2015 Keynote LLC. All rights reserved. THE INFORMATION CONTAINED IN THIS

More information

Apple Newsstand. v 1.2 1/22

Apple Newsstand. v 1.2 1/22 Apple Newsstand v 1.2 1/22 Table of Contents Table of Contents What is Apple Newsstand? How do I make a Newsstand publication? How do I get my AppStore App into Newsstand? Notes for Submitting Newsstand

More information

NETGEAR genie Apps. User Manual. 350 East Plumeria Drive San Jose, CA 95134 USA. August 2012 202-10933-04 v1.0

NETGEAR genie Apps. User Manual. 350 East Plumeria Drive San Jose, CA 95134 USA. August 2012 202-10933-04 v1.0 User Manual 350 East Plumeria Drive San Jose, CA 95134 USA August 2012 202-10933-04 v1.0 Support Thank you for choosing NETGEAR. To register your product, get the latest product updates, get support online,

More information

PRACTICE LINK. Getting Started. version 1.0.x. Digita Support: 08450 180 909 Digita Sales: 08450 180 907 digita.com

PRACTICE LINK. Getting Started. version 1.0.x. Digita Support: 08450 180 909 Digita Sales: 08450 180 907 digita.com PRACTICE LINK Getting Started version 1.0.x Digita Support: 08450 180 909 Digita Sales: 08450 180 907 digita.com TL 28615 (11/17/14) Copyright Information Text copyright 2010 2014 by Thomson Reuters. All

More information

Chapter 8 Remote Scoring

Chapter 8 Remote Scoring Chapter 8 Remote Scoring 161 Chapter 8 Remote Scoring Mulligan s Eagle provides facilities (in versions 2.4 and later of the software) to accommodate remote scoring the entry of golf scores on remote devices

More information

AppConnect FAQ for MobileIron Technology Partners! AppConnect Overview

AppConnect FAQ for MobileIron Technology Partners! AppConnect Overview AppConnect FAQ for MobileIron Technology Partners! AppConnect Overview What is AppConnect? AppConnect is a MobileIron product that secures and protects enterprise mobile apps. It manages the complete lifecycle

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Contents FAQ: About Us... 1 FAQ: About BryteWave Digital Textbooks... 2 FAQ: Shopping... 4 FAQ: Delivery of Digital Materials... 6 FAQ: Mobile Devices... 7 FAQ: Technical...

More information

Magaya Software Installation Guide

Magaya Software Installation Guide Magaya Software Installation Guide MAGAYA SOFTWARE INSTALLATION GUIDE INTRODUCTION Introduction This installation guide explains the system requirements for installing any Magaya software, the steps to

More information

Honeywell Total Connect 2.0 Remote Services. FAQs. LYNX Touch, LYNX Plus. VISTA Products. Service. Remote Monitoring and Control. Automation Services

Honeywell Total Connect 2.0 Remote Services. FAQs. LYNX Touch, LYNX Plus. VISTA Products. Service. Remote Monitoring and Control. Automation Services Service Remote Monitoring and Control Remote Arming/Disarming Manage security remotely via the Honeywell Total Connect website or the Honeywell Total Connect app for ios and Android mobile devices. System

More information

Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Palm Treo Installation

Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Palm Treo Installation Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Palm Treo Installation Thank you for your interest in Mechanics Bank Mobile Banking. This guide will help you get started with Mechanics

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

InsideView Lead Enrich Setup Guide for Marketo

InsideView Lead Enrich Setup Guide for Marketo InsideView Lead Enrich Setup Guide for Marketo ... 1 Step 1: Sign up for InsideView for Marketing... 1 Step 2: Create Custom Fields... 3 Step 3: Create a Webhook for InsideView for Marketing... 5 Step

More information

How To Print From Ait Mobile Printing Service On Iphone Or Android (For Android) Or Ipad (For Mac) From Ai Or Ipod (For Ipad) From Your Computer Or Ipads Or Ipa (For A

How To Print From Ait Mobile Printing Service On Iphone Or Android (For Android) Or Ipad (For Mac) From Ai Or Ipod (For Ipad) From Your Computer Or Ipads Or Ipa (For A SAIT Polytechnic SAIT Mobile Printing Service Information Systems: Server Operations Revision 1.0 Table of Contents 1.0 Printing Using Apple Devices... 3 1.1 Using a Browser to Print Photos or Webpages...

More information

XenMobile Logs Collection Guide

XenMobile Logs Collection Guide XenMobile Logs Collection Guide 1 Contents Summary... 3 Background... 3 How to Collect Logs from Server Components... 4 Support Bundle Contents... 4 Operations Supported for Server Components... 5 Configurations

More information

Skills Funding Agency

Skills Funding Agency Provider Data Self Assessment Toolkit (PDSAT) v15 User Guide Contents Introduction... 3 1 Before You Start... 4 1.1 Compatibility... 4 1.2 Extract PDSAT... 4 1.3 Trust Center... 4 2. Using PDSAT... 6 2.1

More information

Penetration Testing for iphone Applications Part 1

Penetration Testing for iphone Applications Part 1 Penetration Testing for iphone Applications Part 1 This article focuses specifically on the techniques and tools that will help security professionals understand penetration testing methods for iphone

More information

Exchange ActiveSync (EAS)

Exchange ActiveSync (EAS) Exchange ActiveSync (EAS) EAS allows for the synchronization of email, contacts, calendar, tasks and notes from an Exchange email server to a mobile device. Configuring and Connecting ios devices (iphone,

More information

Using Application Loader

Using Application Loader !!! Using Application Loader!!!!!!!!!!! apple!!!!!!! Contents Introduction 4 What s New 4 Organization of This Document 4 Getting Additional Information 5 Getting Started 6 What is Application Loader?

More information

Configuration Guide Contigo Mobile Tracker

Configuration Guide Contigo Mobile Tracker Track Fleet Personnel / Vehicles with a Mobile Device Users with access to the GPS Fleet Tracker mobile app on iphone and Android can now enable a tracking session on their smartphone, turning their phone

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions If you have any questions about ConnectBooks, please use the Table of Contents below to quickly locate the information you need. Table of Contents 1. What is ConnectBooks for

More information

Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows

Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Microsoft Windows Updated September, 2013 This document will describe how to download and install the Android

More information

Chapter 1. Xcode Projects

Chapter 1. Xcode Projects Chapter 1 Xcode Projects Every program you create in Xcode requires a project, even a simple command-line program with one file. Because every program requires a project, covering projects is a good way

More information

PhoneGap Build Starter

PhoneGap Build Starter PhoneGap Build Starter Painless Mobile Apps Development Zainul Setyo Pamungkas This book is for sale at http://leanpub.com/phonegapbuild This version was published on 2015-05-26 This is a Leanpub book.

More information

BuzzTouch ios Push Notifications

BuzzTouch ios Push Notifications BuzzTouch ios Push Notifications Niraj Shah January 27, 2013 Version 1.1 BuzzTouch ios Push Notifications 1 Introduction 1.1 An overview of Apple's Push Notifications 5 2 On the Mac with Keychain Access

More information

GETTING STARTED GUIDE

GETTING STARTED GUIDE support@simicart.com Support: +84-4-3127-1357 SIMICLOUD GETTING STARTED GUIDE - Version 1.0-1 Table of Content 1. INTRODUCTION... 3 2. HOW TO NAVIGATE... 4 3. HOW TO CREAT A MOBILE SHOPPING APP... 8 3.1.

More information

Mobile Client SDK for ios Developer's Guide

Mobile Client SDK for ios Developer's Guide Mobile Client SDK for ios Release Number 2.5.7.12 Published: 1/8/2013 6:29 PM Gracenote, Inc. 2000 Powell Street, Suite 1500 Emeryville, California 94608-1804 www.gracenote.com Getting Started with the

More information

There are a variety of ways to read ebooks from the Stirling Libraries and Archives ebooks Collection.

There are a variety of ways to read ebooks from the Stirling Libraries and Archives ebooks Collection. 1 Guide Contents Using Stirling Libraries and Archives ebook Service 2 Downloading to Adobe Digital Editions 6 Transferring to an E-Reader from Adobe Digital 7 Editions Downloading to an Apple ipad and

More information

Colligo Briefcase Enterprise. Administrator s Guide

Colligo Briefcase Enterprise. Administrator s Guide Enterprise Administrator s Guide CONTENTS Introduction... 2 Target Audience... 2 Overview... 2 Key Features... 2 Platforms Supported... 2 SharePoint Security & Privileges... 2 Deploying Colligo Briefcase...

More information

Sophos Mobile Control Administrator guide. Product version: 3

Sophos Mobile Control Administrator guide. Product version: 3 Sophos Mobile Control Administrator guide Product version: 3 Document date: January 2013 Contents 1 About Sophos Mobile Control...4 2 About the Sophos Mobile Control web console...7 3 Key steps for managing

More information

Sophos Mobile Control Installation guide

Sophos Mobile Control Installation guide Sophos Mobile Control Installation guide Product version: 2.5 Document date: July 2012 Contents 1 Introduction... 3 2 The Sophos Mobile Control server... 4 3 Set up Sophos Mobile Control... 13 4 Running

More information

Software Development Kit for ios and Android

Software Development Kit for ios and Android Software Development Kit for ios and Android With Bomgar's software development kit for mobile devices, your developers can integrate your mobile app with Bomgar to provide faster, more thorough support

More information

CRESTRON-APP/CRESTRON-APP-PAD Control App for Apple ios

CRESTRON-APP/CRESTRON-APP-PAD Control App for Apple ios 1 Introduction The Crestron apps CRESTRON-APP and CRESTRON-APP-PAD provide a Smart Graphics touch screen user interface on Apple devices running the ios operating system. CRESTRON-APP can also provide

More information

Daylite Server Admin Guide (Dec 09, 2011)

Daylite Server Admin Guide (Dec 09, 2011) Daylite Server Admin Guide (Dec 09, 2011) Table of contents Objective 3 Audience 3 Overview 4 Setting up the Daylite Server Admin 5 Database Security 16 Further reading 19 Help and other resources 21 2

More information

Lutron Home Control Remote Access FAQ

Lutron Home Control Remote Access FAQ Lutron Home Control Remote Access FAQ What software versions of RadioRA 2 / HomeWorks QS / Lutron Home Control App does remote access work with? RadioRA 2 version 6.1.0 and up HomeWorks QS version 5.0.3

More information

Apple Pay Questions & Answers

Apple Pay Questions & Answers Apple Pay Questions & Answers Member FDIC Welcome Questions and Answers About Apple Pay Thomaston Savings Bank is pleased to announce that its customers may now use Apple Pay to make purchases with their

More information

Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe.

Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe. Tutorial Learning Objectives: After completing this lab, you should be able to learn about: Learn how to use Xcode with PhoneGap and jquery mobile to develop iphone Cordova applications. Learn how to use

More information

Xcode Application note

Xcode Application note 1 Xcode Application note - how to export file from an ios application Feifei Li ECE480 Design Team 10 2 Table of Contents Introduction... 3 Get Started... 3 Familiar with Xcode... 6 Create user interface...

More information

APP ANALYTICS PLUGIN

APP ANALYTICS PLUGIN support@magestore.com Phone: 084.4.8585.4587 APP ANALYTICS PLUGIN USER GUIDE Table of Contents 1. INTRODUCTION 2. HOW TO INSTALL 3. HOW TO SET UP YOUR GOOGLE ANALYTICS ACCOUNT 4. HOW TO CONFIGURE IN MAGENTO

More information

1. What are the System Requirements for using the MaaS360 for Exchange ActiveSync solution?

1. What are the System Requirements for using the MaaS360 for Exchange ActiveSync solution? MaaS360 FAQs This guide is meant to help answer some of the initial frequently asked questions businesses ask as they try to figure out the who, what, when, why and how of managing their smartphone devices,

More information

Apogee ONE. QuickStart Guide. V3, March, 2013

Apogee ONE. QuickStart Guide. V3, March, 2013 Apogee ONE QuickStart Guide V3, March, 2013 Contents Overview!... 5 Introduction! 5 Package contents! 6 ONE Panel Tour! 8 Optional Battery Power! 9 Connecting to your Mac!... 10 System Requirements! 10

More information

App Distribution Guide

App Distribution Guide App Distribution Guide Contents About App Distribution 10 At a Glance 11 Enroll in an Apple Developer Program to Distribute Your App 11 Generate Certificates and Register Your Devices 11 Add Store Capabilities

More information

Mobile App: Synthes International Installation Guide

Mobile App: Synthes International Installation Guide Mobile App: Synthes International Installation Guide Version: 1.0 Datum: June 15, 2011 Autor: Urs Heller Table of Contents 1. Requirements 3 1.1 Hardware 3 1.2 Software 3 2. Do I have an Apple ID? Is my

More information

GOOGLE MOBILE ANALYTICS INTEGRATION. JANUARY 2013 (App version 3.0.8 onwards)

GOOGLE MOBILE ANALYTICS INTEGRATION. JANUARY 2013 (App version 3.0.8 onwards) GOOGLE MOBILE ANALYTICS INTEGRATION JANUARY 2013 (App version 3.0.8 onwards) What is Google Mobile Analytics? Google Mobile Analytics is a service to show how users interact with their websites and mobile

More information

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29 I. Before Publishing 1. System requirements Requirements for ios App publishing using FlyingCatBuilder Mac running OS X version 10.9.4 or later Apple Development Account Enrollment in ios Developer Program

More information

APPLE & ANDROID. User Guide BNC ONLINE BANKING

APPLE & ANDROID. User Guide BNC ONLINE BANKING APPLE & ANDROID User Guide BNC ONLINE BANKING Deposit Checks from your Smartphone! ABOUT ROC KIT ANYWHERE With ROC-KIT Anywhere, you don t have to make trips to the bank to deposit checks. For consumer

More information

Install and Configure Cyberoam iaccess for ios

Install and Configure Cyberoam iaccess for ios Applicable Cyberoam Version: 10.6.1 onwards Applicable iaccess Client Version: 1.0.0 onwards Applicable ios Version: 5.0 onwards. Compatible with iphone, ipad, and ipod touch. This app is optimized for

More information

Cloud Services MDM. ios User Guide

Cloud Services MDM. ios User Guide Cloud Services MDM ios User Guide 10/24/2014 CONTENTS Overview... 3 Supported Devices... 3 System Capabilities... 3 Enrollment and Activation... 4 Download the Agent... 4 Enroll Your Device Using the Agent...

More information

QTAKE HD and COPRA Version 1.2

QTAKE HD and COPRA Version 1.2 QTAKE HD and COPRA Version 1.2 Content QTAKE HD AND COPRA 3 PREVIOUS VERSIONS OF THIS DOCUMENT 3 ABOUT THIS DOCUMENT 3 THEORY OF OPERATION 3 SETUP 4 Installing the Copra server 5 COPRA MENU 5 HINTS AND

More information

A guide to Barclaycard Anywhere

A guide to Barclaycard Anywhere A guide to Barclaycard Anywhere Contents Barclaycard Anywhere components Card reader specifications Getting started Payments Getting the most out of Barclaycard Anywhere Checking how your business is doing

More information

FAQs. OneDrive for Business?

FAQs. OneDrive for Business? Contents FAQs... 1 From a Web Browser (for PCs and mobile devices)... 1 From the OneDrive for Business Sync Application (for PCs only)... 2 From Office 2013 (for PCs only)... 3 From the OneDrive for Business

More information

INTERNAL USE ONLY (Set it to white if you do not need it)

INTERNAL USE ONLY (Set it to white if you do not need it) APPLICATION NOTE How to Build Basler pylon C++ Applications with Free Microsoft Visual Studio Document Number: AW000644 Version: 03 Language: 000 (English) Release Date: 23 July 2015 INTERNAL USE ONLY

More information

1 Introduction... 3 1.1 The package contents... 3 1.2 Function and Features... 3 1.3 Product Specification... 4 2 Appearance and interface... 5 2.

1 Introduction... 3 1.1 The package contents... 3 1.2 Function and Features... 3 1.3 Product Specification... 4 2 Appearance and interface... 5 2. ibaby Monitor Model: M2 User Manual 1 1 Index 1 Introduction... 3 1.1 The package contents... 3 1.2 Function and Features... 3 1.3 Product Specification... 4 2 Appearance and interface... 5 2.1 Appearance...

More information

Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Windows Mobile Phone Installation

Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Windows Mobile Phone Installation Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Windows Mobile Phone Installation Thank you for your interest in Mechanics Bank Mobile Banking. This guide will help you get started

More information