Developing for MSI Android Devices

Size: px
Start display at page:

Download "Developing for MSI Android Devices"

Transcription

1 Android Application Development Enterprise Features October 2013

2 Developing for MSI Android Devices Majority is the same as developing for any Android device Fully compatible with Android SDK We test using the Android Compatibility Test Suite (CTS) to ensure compatibility We have added extensions and features to enable enterprise applications/deployments

3 Getting Started with Android Development

4 Install the Android Developer Tools Download ADT bundle from Single download, includes everything you need to begin developing apps (almost) Eclipse + ADT plugin Android SDK Tools Android Platform-tools The latest Android platform The latest Android system image for the emulator JDK 6 (JRE alone is not sufficient) from Sun (Oracle) JDK 7 not officially supported, but works ownloads/java-archive-downloads-javase html#jdk-6u45-oth-jpr

5 Configuring Android Debug Bridge (ADB) MSI devices fully compatible with ADB and other tools ADB creates a link over USB used for command line tools and Eclipse IDE debugger Google provides USB ADB driver with Android SDK Configuring Google USB ADB Driver Windows XP and Windows7 Driver available Copy driver to PC Update to adb_usb.ini to include Motorola devices (0x0451 and 0x05E0) Connect device to PC and navigate to folder with driver when asked Windows 8 Disable device driver signature enforcement Same procedure as above Linux Update adb_usb.ini file and rules file to include Motorola devices (0x0451 and 0x05E0)

6 USB Media Transfer Protocol (MTP) Starting with Ice Cream Sandwich, Android changed its default USB protocol from USB Mass Storage to Media Transfer Protocol (MTP) Windows 7 works with MTP out of the box Windows XP requires update to Windows Media Player 11 to install MTP patch Click Help -> Check for Player Updates from WMP Or download MTP kit from Ensure select Composite ADB Device when installing USB device to ensure can use both ADB and MTP connections

7 Device Set-Up for Development Use system settings to Enable Android Debug Bridge Gingerbread Settings -> Applications-> Development Jelly Bean Settings -> Developer Options

8 Android API Levels Each Version of Android has a unique API Level, allowing applications to ensure compatibility Gingerbread devices API Level 10 Jelly Bean devices API Level 16 Complete list at developer.android.com/guide/topics/uses-sdk-element.html The Application manifest.xml <uses-sdk> element lets you define compatibility with one or more versions of Android android:minsdkversion Specifies the minimum API Level on which the application is able to run. The default value is "1 (runs on all versions) android:targetsdkversion Specifies the API Level on which the application is designed to run (i.e. what is was tested on) android:maxsdkversion Specifies the maximum API Level on which the application is able to run. Caution: Not recommended in most cases as application will fail if OS is updated

9 More Info on Native Development Google s Android Training Site: Google s API Reference: Google s Developer News and Documents:

10 Retrieving Battery Status Receive standard Android ACTION_BATTERY_CHANGED broadcast Intent Intent Extended Data has various battery information Motorola Adds additional battery data in the standard Android Intent Not available on all models

11 Standard Battery Data Available Constant EXTRA_HEALTH EXTRA_ICON_SMALL Data value integer containing the current health constant. integer containing the resource ID of a small status bar icon with battery state EXTRA_LEVEL integer field containing the current battery level, from 0 EXTRA_PLUGGED EXTRA_PRESENT EXTRA_SCALE EXTRA_STATUS to EXTRA_SCALE integer indicating whether the device is plugged in to a power source boolean indicating whether a battery is present integer containing the maximum battery level integer containing the current status constant EXTRA_TECHNOLOGY String describing the technology of the current battery EXTRA_TEMPERATURE integer containing the current battery temperature EXTRA_VOLTAGE integer containing the current battery voltage level

12 Motorola Battery Data Available Constant "bkvoltage" "mfd" "serialnumber" "partnumber" "uniqueid" "ratedcapacity" "cycle" Data value Backup Battery Voltage Battery Manufacture Date Battery Serial Number Part Number for Battery Unique ID for Battery Rated Capacity of the Battery Charge Cycle count of the Battery

13 Example: Retrieving Battery Status mbattfilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED); mbattintent = this.registerreceiver(this.batteryinforeceiver, mbattfilter); Register the Intent private static final String MOTO_EXTRA_SERIAL_NUMBER = "serialnumber"; private BroadcastReceiver batteryinforeceiver = new BroadcastReceiver() public void onreceive(context context, Intent intent) { Receiver runs when battery status changes /* Standard Android Battery Information */ int status = intent.getintextra(batterymanager.extra_status,-1); String tech = intent.getextras().getstring(batterymanager.extra_technology); int voltage = intent.getintextra(batterymanager.extra_voltage, 0); /* Motorola Solutions specific Data (only one field shown here as an example)*/ String SerialNumber = intent.getextras().getstring(moto_extra_serial_number); Battery Info is in Intent extra data

14 USB Power On ET-1, 5V power for accessories can be controlled by an application via Intents Accessory port is the top USB port USB Power Control Intents com.motorolasolutions.intent.usbpowerenable com.motorolasolutions.intent.usbpowerdisable

15 What is Mx? Mx represents a suite of Enterprise Features on Top of standard, commercially available AOSP (Android Open Source Project) Mx maintains Compatibility with Standard Android Applications There is no generally available exposed API Surface for Mx (currently exclusive to MDM partners)

16 MxOS Extension Features Multiuser Authentication Separation of User Data Spaces Reduced System Settings Dialog Whitelist Application Secure Storage Volume Encryption Full SD Card Encryption Certificate Management Silent Application Installation Ability to enable/disable USB Mass Storage & ADB Set a New APK as the Default Home Screen System Settings Configurable through MDM

17 Overview MX Multiuser Framework Allows multiple users to access the device Each user optionally has their own data space and settings Unlock screen replaced by a credentials dialog Username and password required to unlock the device Notification area will indicate the current user. Tapping on the notification will trigger the logout process Choice of Local or Remote Authentication Local database on the device Authenticate against an Active Directory server When remote authentication is selected, users in the local database are permitted as well. Only administrator users are permitted to modify any system setting

18 Development Info & Tips MX Multiuser Framework Development Impact The multiuser framework is transparent Although data separation adds a layer of abstraction, no special coding is needed Avoid using hard coded paths All open applications are forced closed upon logout Exception: those applications or services that are required to span users Tips Always create at least one administrative user in the local database. This will allow a device using remote authentication to be unlocked and configured if connection to the AD server is lost.

19 Development Info & Tips MX ApplicationLock Overview Works in conjunction with Multiuser Framework Each user is assigned to a group(s) Each group is assigned a white list of packages which are permitted Each white list consists of three separate pieces System list applications needed for the system to operate properly Common list applications permitted for ALL groups Individual list applications permitted for the individual group Users included in multiple groups are permitted the sum of the individual list for each group Packages are defined by their package name Any application not included on the white list is NOT permitted to be installed or launched

20 Development Info & Tips MX ApplicationLock Development Impact All applications spawned from another application must be included on the same white list Tips Be sure to create an administrator group for users that are permitted to use ALL applications Be careful with use of the wildcard character in the white list, this may lead to permitting applications that are unintended for that group

21 Overview Development Info & Tips MX Secure Storage Encryption can span the entire SD Card or only an individual folder tree When the entire SD Card is encrypted: The card will be reformatted When only a folder tree is encrypted: Different folder trees can use different keys The folder tree can be mounted under /data or /sdcard Encryption / decryption occurs between the file system and the application making this feature transparent to applications. The auto mount feature can be used to direct the system to mount the encrypted data automatically on reset If the encryption key is known, the data within the encrypted area can be copied to a Linux system and read

22 Development Info & Tips MX Secure Storage Development Impact None: once the encrypted area is mounted, the data from the application is read and written using standard algorithms Tips In many cases the SD Card is used to deploy OS updates. If the entire SD Card is encrypted, the recovery mechanism will not be able to read the SD Card When a folder tree is mounted under /data, make sure the path is correct for the intended application A folder tree cannot be mounted if the mount point contains unencrypted data Factory reset will erase the encryption keys. Be sure to record and secure encryption keys to re-install into a device that has been factory reset.

23 MSI Utilities 4 Basic Utilities 1) Multiuser Administrator -on-device utility used to enable/disable the Multiuser feature and populate the credentials database. 2) AppLock Administrator -on-device utility used to enable/disable the Application Lock feature and install groups and white list files 3) Enterprise Administrator -a desktop utility used to manage users, groups and white lists. The export function of this utility will write files in the format necessary for the Multiuser Administrator and the AppLock Administrator (migrating to XML) 4) Secure Storage Administrator (SSA) on-device utility used to install and delete encryption keys. Also used to create, mount/un-mount and delete EFS partitions.

24 Enterprise Administrator Runs on Windows Manage Users Groups Packages Local or Server based user authentication Import and Export Users Groups Packages

25 Enterprise Administrator

26 Determining Packages Installed on Device On Host computer, open a command prompt (or a terminal in Ubuntu) C:\[path of sdk]\platform-tools\adb shell $pm list packages f > sdcard/pkglist.txt $exit

27 User Addition

28 Group Manager

29 Local or Server Based Authentication

30 Multi-User Administrator Users must be defined in the Enterprise Administrator before enabling Export Files from the Enterprise Administrator Copy to root of device Loading User list immediately enables Multiuser Mode

31 Multi-User Administrator

32 Multi-User Enabled Note Multi-User icon in upper left Drag icon down to log off

33 App Lock Administrator Multi-User must be enabled before App Lock Groups and White lists must be defined in the Enterprise Administrator before enabling Export Files from the Enterprise Administrator Copy to root of device Install Groups and White Lists

34 App Lock Administrator

35 Secure Storage Administrator Allows creation and maintenance of encryption keys Allows creation, control, and deletion of encrypted volumes

36 Secure Storage Administrator

37 Enterprise Home Screen (EHS) Comparable to Windows AppCenter Separately Downloadable App (apk), XML configured (folder = /enterprise/usr/) Device Oriented (i.e. Not Individual User) Replacement App Launcher exposes only chosen icons Ability to selectively choose Icons/apps on home screen Kiosk Mode (auto app invocation preventing user from exiting) Auto Launch (auto app invocation allowing user to exit) A Separate Tools Screen (to better organize) An Admin Password for enabling configuration (256 bit AES encrypted)

38 Enterprise Home Screen Enterprise Home Screen (EHS) is a replacement application launcher Designed to allow only specified applications to be launched. Enterprise Home Screen is configured via an xml file found in the /enterprise/usr/ folder in the internal memory of the device. This file is read on startupand every time the home button is pressed while in EHS. Features Kiosk mode and auto launch applications User and Admin modes Admin password with 256 bit AES encryption Tools menu, battery and wireless status screens Customize EHS launcher title Icon text and background color Background wallpaper Orientation Bypass swipe to unlock

39 4 Enterprise Home Screen (EHS)

40 Enterprise Home Screen Enterprise Home Screen is configured via an xml file. This file is read on startup and every time the home button is pressed while in EHS. 1. Auto launch (optional) 2. Kiosk launch (optional) 3. Applications 4. Tools 5. Password 6. Preferences Title text displayed in the launcher title bar App icon label background color App icon label text color Screen orientation Bypass swipe to unlock Wallpaper

41 Button Remapping ET1 Remapping UI MC40 Remapping UI

42 OS -Key Button Remapping Each device has external buttons that can be remapped to change function or launch an application Remapping tool on device under Settings Key Programmer To deploy to multiple devices, configure the buttons as desired and then export an XML file To deploy mappings on MC40 Copy the XML file to a /enterprise/user/keypad folder on the device NOTE: no reset is required, the XML file will be automatically consumed and the keys remapped

43 Folder Persistence in MSI Android Devices Folder Reboot Enterprise Reset Factory Reset /data Persistent Not Persistent Not Persistent /enterprise Persistent Persistent Not Persistent /sdcard Persistent Persistent Persistent Enterprise and Factory reset thru recovery mode (similar to an OS update) Reset files available from Ensure you use correct reset file (gingerbread or Jellybean) Use factory reset with caution!!

44 GOOGLE MOBILE SERVICES Google offers a variety of applications and associated services for developers independent of the Android Open Source Project. The services are available as native Android API s via an SDK extra. The services can only be used on Android devices that choose to include them. Collectively, they are known as Google Mobile Services.

45 WHY GOOGLE MOBILE SERVICES IS NOT PRESENT ON ALL MSI DEVICES SECURITY Google Mobile Services requires devices to be identified with a specific GoogleID, and routes enterprise data through Google s servers. PRIVACY Google revamped their privacy policy in early 2012 allowing for richer user profiling across all services, for targeted advertising. Usage acceptance allows Google to track a device s every move. Google may collect IP Addresses,location, nearby wi-fi info, local storage and device setting details.

46 GOOGLE MOBILE SERVICES

47 More Information Join the Motorola Solutions Android Developer Community The Go To place for all your MSI Android development needs Documentation, Technical Articles, Discussion Forums

48 THANK YOU MOTOROLA, MOTO, MOTOROLA SOLUTIONS and the Stylized M Logo are trademarks orregistered trademarks of Motorola Trademark Holdings, LLC and are used under license. All other trademarks are the property of their respective owners Motorola Solutions, Inc. All rights reserved.

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown GO!Enterprise MDM for Android, Version 3.x GO!Enterprise MDM for Android with TouchDown 1 Table

More information

1. Scope of Service. 1.1 About Boxcryptor Classic

1. Scope of Service. 1.1 About Boxcryptor Classic Manual for Mac OS X Content 1. Scope of Service... 3 1.1 About Boxcryptor Classic... 3 1.2 About this manual... 4 2. Installation... 5 2.1 Installing Boxcryptor Classic... 5 2.2 Licensing Boxcryptor Classic

More information

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android GO!Enterprise MDM for Android, Version 3.x GO!Enterprise MDM for Android 1 Table of Contents GO!Enterprise MDM

More information

Setting up Sudoku example on Android Studio

Setting up Sudoku example on Android Studio Installing Android Studio 1 Setting up Sudoku example on Android Studio Installing Android Studio Android Studio provides everything you need to start developing apps for Android, including the Android

More information

With a single download, the ADT Bundle includes everything you need to begin developing apps:

With a single download, the ADT Bundle includes everything you need to begin developing apps: Get the Android SDK The Android SDK provides you the API libraries and developer tools necessary to build, test, and debug apps for Android. The ADT bundle includes the essential Android SDK components

More information

Islamic University of Gaza. Faculty of Engineering. Computer Engineering Department. Mobile Computing ECOM 5341. Eng. Wafaa Audah.

Islamic University of Gaza. Faculty of Engineering. Computer Engineering Department. Mobile Computing ECOM 5341. Eng. Wafaa Audah. Islamic University of Gaza Faculty of Engineering Computer Engineering Department Mobile Computing ECOM 5341 By Eng. Wafaa Audah June 2013 1 Setting Up the Development Environment and Emulator Part 1:

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

Android App User Guide

Android App User Guide www.novell.com/documentation Android App User Guide ZENworks Mobile Management 2.7.x August 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of

More information

Android Programming and Security

Android Programming and Security Android Programming and Security Dependable and Secure Systems Andrea Saracino andrea.saracino@iet.unipi.it Outlook (1) The Android Open Source Project Philosophy Players Outlook (2) Part I: Android System

More information

Super Manager User Manual. English v1.0.3 2011/06/15 Copyright by GPC Http://gpc.myweb.hinet.net

Super Manager User Manual. English v1.0.3 2011/06/15 Copyright by GPC Http://gpc.myweb.hinet.net Super Manager User Manual English v1.0.3 2011/06/15 Copyright by GPC Http://gpc.myweb.hinet.net How to launch Super Manager? Click the Super Manager in Launcher or add a widget into your Launcher (Home

More information

How To Run A Hello World On Android 4.3.3 (Jdk) On A Microsoft Ds.Io (Windows) Or Android 2.7.3 Or Android 3.5.3 On A Pc Or Android 4 (

How To Run A Hello World On Android 4.3.3 (Jdk) On A Microsoft Ds.Io (Windows) Or Android 2.7.3 Or Android 3.5.3 On A Pc Or Android 4 ( Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution

More information

Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper

Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper WP2 Subject: with the CRYPTO-BOX Version: Smarx OS PPK 5.90 and higher 0-15Apr014ks(WP02_Network).odt Last Update: 28 April 2014 Target Operating Systems: Windows 8/7/Vista (32 & 64 bit), XP, Linux, OS

More information

How to Install Applications (APK Files) on Your Android Phone

How to Install Applications (APK Files) on Your Android Phone How to Install Applications (APK Files) on Your Android Phone Overview An Android application is stored in an APK file (i.e., a file named by {Application Name}.apk). You must install the APK on your Android

More information

Lab 0 (Setting up your Development Environment) Week 1

Lab 0 (Setting up your Development Environment) Week 1 ECE155: Engineering Design with Embedded Systems Winter 2013 Lab 0 (Setting up your Development Environment) Week 1 Prepared by Kirill Morozov version 1.2 1 Objectives In this lab, you ll familiarize yourself

More information

The "Eclipse Classic" version is recommended. Otherwise, a Java or RCP version of Eclipse is recommended.

The Eclipse Classic version is recommended. Otherwise, a Java or RCP version of Eclipse is recommended. Installing the SDK This page describes how to install the Android SDK and set up your development environment for the first time. If you encounter any problems during installation, see the Troubleshooting

More information

Installing the Android SDK

Installing the Android SDK Installing the Android SDK To get started with development, we first need to set up and configure our PCs for working with Java, and the Android SDK. We ll be installing and configuring four packages today

More information

NotifyMDM Device Application User Guide Installation and Configuration for Windows Mobile 6 Devices

NotifyMDM Device Application User Guide Installation and Configuration for Windows Mobile 6 Devices NotifyMDM Device Application User Guide Installation and Configuration for Windows Mobile 6 Devices End-of-Life Notice Please note that GO!Enterprise MDM server version 3.6.3 is the last to officially

More information

M100 System File Manager Help

M100 System File Manager Help Copyright (c) Vuzix Corporation 2013-2014. All Rights Reserved. M100 System File Manager Help Section I) Installation of the M100 Section II) General Information Section III) Troubleshooting Section IV)

More information

Standard Operating Procedure for Upgrading the Firmware to Android Kit Kat

Standard Operating Procedure for Upgrading the Firmware to Android Kit Kat PadFone 2 E9525 Standard Operating Procedure for Upgrading the Firmware to Android Kit Kat Download the latest firmware from the ASUS Support site and follow the instructions described in this guide to

More information

OpenCV on Android Platforms

OpenCV on Android Platforms OpenCV on Android Platforms Marco Moltisanti Image Processing Lab http://iplab.dmi.unict.it moltisanti@dmi.unict.it http://www.dmi.unict.it/~moltisanti Outline Intro System setup Write and build an Android

More information

Sharp Remote Device Manager (SRDM) Server Software Setup Guide

Sharp Remote Device Manager (SRDM) Server Software Setup Guide Sharp Remote Device Manager (SRDM) Server Software Setup Guide This Guide explains how to install the software which is required in order to use Sharp Remote Device Manager (SRDM). SRDM is a web-based

More information

Android Development. http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系

Android Development. http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系 Android Development http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系 Android 3D 1. Design 2. Develop Training API Guides Reference 3. Distribute 2 Development Training Get Started Building

More information

Android Security for Enterprise App Developers Jon Preedy

Android Security for Enterprise App Developers Jon Preedy Android Security for Enterprise App Developers Jon Preedy Sr. Sales Engineer Agenda for Lightning Talk Developer View Android Security Model Security and Enterprise-Scale Device Configuration Encryption

More information

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios with TouchDown

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios with TouchDown GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios with TouchDown GO!Enterprise MDM for ios Devices, Version 3.x GO!Enterprise MDM for ios with TouchDown 1 Table of

More information

Avalanche Remote Control User Guide. Version 4.1.3

Avalanche Remote Control User Guide. Version 4.1.3 Avalanche Remote Control User Guide Version 4.1.3 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway, Suite 200 South Jordan, Utah 84095

More information

Silk Test 17.0. Testing Mobile Applications

Silk Test 17.0. Testing Mobile Applications Silk Test 17.0 Testing Mobile Applications Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1992-2016. All rights reserved. MICRO

More information

Android Environment SDK

Android Environment SDK Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 2A. Android Environment: Eclipse & ADT The Android

More information

Fahim Uddin http://fahim.cooperativecorner.com email@fahim.cooperativecorner.com. 1. Java SDK

Fahim Uddin http://fahim.cooperativecorner.com email@fahim.cooperativecorner.com. 1. Java SDK PREPARING YOUR MACHINES WITH NECESSARY TOOLS FOR ANDROID DEVELOPMENT SEPTEMBER, 2012 Fahim Uddin http://fahim.cooperativecorner.com email@fahim.cooperativecorner.com Android SDK makes use of the Java SE

More information

Samsung Galaxy S II Software Upgrade

Samsung Galaxy S II Software Upgrade Samsung Galaxy S II Software Upgrade Samsung has released a software update for the C Spire Samsung Galaxy S II(SCH-R760), OS Jelly Bean software version 4.1.2 version build GB28. Please follow the instructions

More information

Samsung KNOX User Guide KNOX for Consumers Edition

Samsung KNOX User Guide KNOX for Consumers Edition Samsung KNOX User Guide KNOX for Consumers Edition Version 1.3 Jan 07, 2015 Copyright Notice Copyright 2013 Samsung Electronics Co. Ltd. All rights reserved. Samsung is a registered trademark of Samsung

More information

Administering FileVault 2 on OS X Lion with the Casper Suite. Technical Paper July 2012

Administering FileVault 2 on OS X Lion with the Casper Suite. Technical Paper July 2012 Administering FileVault 2 on OS X Lion with the Casper Suite Technical Paper July 2012 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that

More information

Android Setup Phase 2

Android Setup Phase 2 Android Setup Phase 2 Instructor: Trish Cornez CS260 Fall 2012 Phase 2: Install the Android Components In this phase you will add the Android components to the existing Java setup. This phase must be completed

More information

Junos Pulse for Google Android

Junos Pulse for Google Android Junos Pulse for Google Android User Guide Release 4.0 October 2012 R1 Copyright 2012, Juniper Networks, Inc. Juniper Networks, Junos, Steel-Belted Radius, NetScreen, and ScreenOS are registered trademarks

More information

EZ RMC Remote HMI App Application Guide for Android Devices

EZ RMC Remote HMI App Application Guide for Android Devices EZ RMC Remote HMI App Application Guide for Android Devices The EZ RMC Remote HMI App is an application designed for your Android devices to enable the monitoring and control of your EZTouch HMIs from

More information

ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I)

ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I) ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I) Who am I? Lo Chi Wing, Peter Lecture 1: Introduction to Android Development Email: Peter@Peter-Lo.com Facebook: http://www.facebook.com/peterlo111

More information

For Windows XP 64 bit

For Windows XP 64 bit Installation Guide Beta drivers for Windows XP[64], Win 7[32/64bit,], Win 8.1[64bit] This version of Orange-5 software introduces support for 64 bit operational systems (Win XP 64 bit, Win7 64, etc..).

More information

Gigabyte Management Console User s Guide (For ASPEED AST 2400 Chipset)

Gigabyte Management Console User s Guide (For ASPEED AST 2400 Chipset) Gigabyte Management Console User s Guide (For ASPEED AST 2400 Chipset) Version: 1.4 Table of Contents Using Your Gigabyte Management Console... 3 Gigabyte Management Console Key Features and Functions...

More information

Android Tutorial. Larry Walters OOSE Fall 2011

Android Tutorial. Larry Walters OOSE Fall 2011 Android Tutorial Larry Walters OOSE Fall 2011 References This tutorial is a brief overview of some major concepts Android is much richer and more complex Developer s Guide http://developer.android.com/guide/index.html

More information

How to downgrade Samsung Galaxy Tab 2 back to original V4.1.1 Android OS

How to downgrade Samsung Galaxy Tab 2 back to original V4.1.1 Android OS How to downgrade Samsung Galaxy Tab 2 back to original V4.1.1 Android OS Important information: This procedure restores the Samsung Galaxy tablet, used with the 1750 Fluke Power Recorder product back to

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

This software will update your Samsung Galaxy S II to Android 4.1.2 software version GB28.

This software will update your Samsung Galaxy S II to Android 4.1.2 software version GB28. Samsung Galaxy S II Android Jelly Bean Update Instructions This software update provided by Samsung will update your Samsung Galaxy S II from Android Gingerbread to Android Jelly Bean. This software will

More information

Reminders. Lab opens from today. Many students want to use the extra I/O pins on

Reminders. Lab opens from today. Many students want to use the extra I/O pins on Reminders Lab opens from today Wednesday 4:00-5:30pm, Friday 1:00-2:30pm Location: MK228 Each student checks out one sensor mote for your Lab 1 The TA will be there to help your lab work Many students

More information

ReadyNAS Remote. User Manual. June 2013 202-11078-03. 350 East Plumeria Drive San Jose, CA 95134 USA

ReadyNAS Remote. User Manual. June 2013 202-11078-03. 350 East Plumeria Drive San Jose, CA 95134 USA User Manual June 2013 202-11078-03 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for selecting this NETGEAR product. After installing your device, locate the serial number on the label

More information

DATA PROJECTOR XJ-A147/XJ-A247/XJ-A257 XJ-M146/XJ-M156 XJ-M246/XJ-M256. XJ-A Series. XJ-M Series. Network Function Guide

DATA PROJECTOR XJ-A147/XJ-A247/XJ-A257 XJ-M146/XJ-M156 XJ-M246/XJ-M256. XJ-A Series. XJ-M Series. Network Function Guide DATA PROJECTOR EN XJ-A Series XJ-A147/XJ-A247/XJ-A257 XJ-M Series XJ-M146/XJ-M156 XJ-M246/XJ-M256 Network Function Guide In this manual, XJ-A Series and XJ-M Series refer only to the specific models listed

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

Board also Supports MicroBridge

Board also Supports MicroBridge This product is ATmega2560 based Freeduino-Mega with USB Host Interface to Communicate with Android Powered Devices* like Android Phone or Tab using Android Open Accessory API and Development Kit (ADK)

More information

Table of Contents. OpenDrive Drive 2. Installation 4 Standard Installation Unattended Installation

Table of Contents. OpenDrive Drive 2. Installation 4 Standard Installation Unattended Installation User Guide for OpenDrive Application v1.6.0.4 for MS Windows Platform 20150430 April 2015 Table of Contents Installation 4 Standard Installation Unattended Installation Installation (cont.) 5 Unattended

More information

How To Set Up Dataprotect

How To Set Up Dataprotect How To Set Up Dataprotect This document will show you how to install and configure your computer for a Typical installation. If you have questions about configuring a Custom installation please contact

More information

Chapter 3 Safeguarding Your Network

Chapter 3 Safeguarding Your Network Chapter 3 Safeguarding Your Network The RangeMax NEXT Wireless Router WNR834B provides highly effective security features which are covered in detail in this chapter. This chapter includes: Choosing Appropriate

More information

SourceAnywhere Service Configurator can be launched from Start -> All Programs -> Dynamsoft SourceAnywhere Server.

SourceAnywhere Service Configurator can be launched from Start -> All Programs -> Dynamsoft SourceAnywhere Server. Contents For Administrators... 3 Set up SourceAnywhere... 3 SourceAnywhere Service Configurator... 3 Start Service... 3 IP & Port... 3 SQL Connection... 4 SourceAnywhere Server Manager... 4 Add User...

More information

Developing In Eclipse, with ADT

Developing In Eclipse, with ADT Developing In Eclipse, with ADT Android Developers file://v:\android-sdk-windows\docs\guide\developing\eclipse-adt.html Page 1 of 12 Developing In Eclipse, with ADT The Android Development Tools (ADT)

More information

Comodo Disk Encryption

Comodo Disk Encryption Comodo Disk Encryption Version 2.0 User Guide Version 2.0.122010 Versi Comodo Security Solutions 525 Washington Blvd. Jersey City, NJ 07310 Table of Contents 1.Comodo Disk Encryption Introduction... 3

More information

App Development for Smart Devices. Lec #2: Android Tools, Building Applications, and Activities

App Development for Smart Devices. Lec #2: Android Tools, Building Applications, and Activities App Development for Smart Devices CS 495/595 - Fall 2011 Lec #2: Android Tools, Building Applications, and Activities Tamer Nadeem Dept. of Computer Science Objective Understand Android Tools Setup Android

More information

ADT Plugin for Eclipse

ADT Plugin for Eclipse ADT Plugin for Eclipse Android Development Tools (ADT) is a plugin for the Eclipse IDE that is designed to give you a powerful, integrated environment in which to build Android applications. ADT extends

More information

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA1826 Designing Cloud Computing Solutions Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

Upgrading Redwood Engine Software. Version 2.0.x to 3.1.0

Upgrading Redwood Engine Software. Version 2.0.x to 3.1.0 Upgrading Redwood Engine Software Version 2.0.x to 3.1.0 December 2013 APP NOTE Table of Contents 1 Introduction... 3 1.1 Backing Up the Redwood Engine Configuration, Statistics, and Log Files... 3 2 Checking

More information

Sophos SafeGuard Native Device Encryption for Mac Administrator help. Product version: 7

Sophos SafeGuard Native Device Encryption for Mac Administrator help. Product version: 7 Sophos SafeGuard Native Device Encryption for Mac Administrator help Product version: 7 Document date: December 2014 Contents 1 About SafeGuard Native Device Encryption for Mac...3 1.1 About this document...3

More information

User Guide. CTERA Agent. August 2011 Version 3.0

User Guide. CTERA Agent. August 2011 Version 3.0 User Guide CTERA Agent August 2011 Version 3.0 Copyright 2009-2011 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written permission

More information

This Upgrade Is Only Valid For The US Cellular SCH-I500 (Mesmerize). It Is Incompatible With All Other Models. Requirements

This Upgrade Is Only Valid For The US Cellular SCH-I500 (Mesmerize). It Is Incompatible With All Other Models. Requirements Samsung has released a software update for the US Cellular SCH-I500 (Mesmerize) which is recommended to be installed. This software will update your Samsung SCH-I500 (Mesmerize) to Android 2.3.4 software

More information

Published: 2015-01-07 SWD-20150107143657691

Published: 2015-01-07 SWD-20150107143657691 Android User Guide Published: 2015-01-07 SWD-20150107143657691 Contents Getting started...7 Process overview...7 Register for a BlackBerry ID account... 8 Install an app repackaging tool... 9 Plug-in and

More information

Title: Appium Automation for Mac OS X. Created By: Prithivirajan M. Abstract. Introduction

Title: Appium Automation for Mac OS X. Created By: Prithivirajan M. Abstract. Introduction Title: Appium Automation for Mac OS X Created By: Prithivirajan M Abstract This document aims at providing the necessary information required for setting up mobile testing environment in Mac OS X for testing

More information

Document OwnCloud Collaboration Server (DOCS) User Manual. How to Access Document Storage

Document OwnCloud Collaboration Server (DOCS) User Manual. How to Access Document Storage Document OwnCloud Collaboration Server (DOCS) User Manual How to Access Document Storage You can connect to your Document OwnCloud Collaboration Server (DOCS) using any web browser. Server can be accessed

More information

Android Environment SDK

Android Environment SDK Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 Android Environment: Eclipse & ADT The Android

More information

QuickStart Guide for Managing Computers. Version 9.2

QuickStart Guide for Managing Computers. Version 9.2 QuickStart Guide for Managing Computers Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software

More information

Manual for Android 1.5

Manual for Android 1.5 Manual for Android 1.5 1 Table of Content 1. Scope of Service... 3 1.1 About Boxcryptor Classic... 3 1.2 About this manual... 3 2. Installation... 4 3. Basic functionality... 5 3.1. Setting up Boxcryptor

More information

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive This guide explains how to create and use a Rescue USB flash drive to reinstall and recover the ExtraHop system. When booting

More information

Wireless Presentation System User s Manual

Wireless Presentation System User s Manual Wireless Presentation System User s Manual (Model Name: WPS-Dongle) Version: 3.0 Date: August 19, 2009 Table of Contents 1. Overview...3 2. Quick Start...4 3. Windows Client Utility...7 3.1 Starting Program...7

More information

Service & Support. How do you create a communication of VNC with an Industrial Thin Client SIMATIC ITC? Thin Client.

Service & Support. How do you create a communication of VNC with an Industrial Thin Client SIMATIC ITC? Thin Client. Cover How do you create a communication of VNC with an Industrial Thin Client SIMATIC ITC? Thin Client FAQ August 2012 Service & Support Answers for industry. Question This entry is from the Siemens Industry

More information

Sophos Mobile Control Administrator guide. Product version: 3.6

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

More information

Gladinet Cloud Backup V3.0 User Guide

Gladinet Cloud Backup V3.0 User Guide Gladinet Cloud Backup V3.0 User Guide Foreword The Gladinet User Guide gives step-by-step instructions for end users. Revision History Gladinet User Guide Date Description Version 8/20/2010 Draft Gladinet

More information

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION Publication: 81-9059-0703-0, Rev. C www.pesa.com Phone: 256.726.9200 Thank You for Choosing PESA!! We appreciate your confidence in our products. PESA produces

More information

DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014

DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 Contents Overview... 2 System requirements:... 2 Before installing... 3 Download and installation... 3 Configure DESLock+ Enterprise Server...

More information

ZENworks 11 Support Pack 4 Full Disk Encryption Agent Reference. May 2016

ZENworks 11 Support Pack 4 Full Disk Encryption Agent Reference. May 2016 ZENworks 11 Support Pack 4 Full Disk Encryption Agent Reference May 2016 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government

More information

A. Welcome 4 B. Features 4 C. Getting Started 4. D. Using SureMDM Web Console 15

A. Welcome 4 B. Features 4 C. Getting Started 4. D. Using SureMDM Web Console 15 v2.0 A. Welcome 4 B. Features 4 C. Getting Started 4 1. Pre-requisites 4 2. Quick Look at SureMDM Web Console 5 3. Getting Nix 9 i. Windows Mobile/CE 9 ii. Android 9 4. Verifying Connectivity with SureMDM

More information

Xperia TM. Read about how Xperia TM devices can be administered in a corporate IT environment

Xperia TM. Read about how Xperia TM devices can be administered in a corporate IT environment peria TM in Business Mobile Device Management Read about how peria TM devices can be administered in a corporate IT environment Device management clients March 2015 Exchange ActiveSync The my peria service

More information

EM6230 e-camview HD outdoor IP camera

EM6230 e-camview HD outdoor IP camera EM6230 e-camview HD outdoor IP camera 2 ENGLISH EM6230 e-camview HD outdoor IP camera Table of contents 1.0 Introduction... 3 1.1 Packing contents... 3 1.2 Requirements to access the camera.... 3 1.3 Major

More information

genie app and genie mobile app

genie app and genie mobile app genie app and genie mobile app User Manual 350 East Plumeria Drive San Jose, CA 95134 USA June 2012 202-10933-02 v1.0 2012 NETGEAR, Inc. All rights reserved No part of this publication may be reproduced,

More information

How To Set Up Hopkins Wireless On Windows 7 On A Pc Or Mac Or Ipad (For A Laptop) On A Network Card (For Windows 7) On Your Computer Or Ipa (For Mac Or Mac) On An Ipa Or

How To Set Up Hopkins Wireless On Windows 7 On A Pc Or Mac Or Ipad (For A Laptop) On A Network Card (For Windows 7) On Your Computer Or Ipa (For Mac Or Mac) On An Ipa Or Wireless Configuration Guide: Windows 7 Additional hopkins wireless network instructions and requirements for Windows XP, Vista, 8, Mac OS X, Linux, and other Mobile versions can be found at: http://www.it.johnshopkins.edu/services/network/wireless/

More information

XyLoc Windows7 Client Release Notes

XyLoc Windows7 Client Release Notes Support Information: XyLoc Windows7 Client Release Notes Ensure Technologies Technical Support is available to provide any needed assistance. Please contact us at (734) 547-1631 or at support@ensuretech.com.

More information

GO!Enterprise Mobile Device Management Android Release Notes

GO!Enterprise Mobile Device Management Android Release Notes GO!Enterprise Mobile Device Management Android Release Notes GO!Enterprise MDM Version 3.9.0 Release Notes 1 GO!Enterprise MDM for Android Table of Contents GO!Enterprise MDM Version 3.9.0 Release Notes

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

DeployStudio Server Quick Install

DeployStudio Server Quick Install DeployStudio Server Quick Install v1.7.0 The DeployStudio Team info@deploystudio.com Requirements OS X 10.7.5 to 10.11.1 DeployStudioServer_v1.7.x.pkg and later NetBoot based deployment 100 Mb/s switched

More information

Seagate Manager. User Guide. For Use With Your FreeAgent TM Drive. Seagate Manager User Guide for Use With Your FreeAgent Drive 1

Seagate Manager. User Guide. For Use With Your FreeAgent TM Drive. Seagate Manager User Guide for Use With Your FreeAgent Drive 1 Seagate Manager User Guide For Use With Your FreeAgent TM Drive Seagate Manager User Guide for Use With Your FreeAgent Drive 1 Seagate Manager User Guide for Use With Your FreeAgent Drive Revision 1 2008

More information

ID TECH UniMag Android SDK User Manual

ID TECH UniMag Android SDK User Manual ID TECH UniMag Android SDK User Manual 80110504-001-A 12/03/2010 Revision History Revision Description Date A Initial Release 12/03/2010 2 UniMag Android SDK User Manual Before using the ID TECH UniMag

More information

Introduction to BlueSoleil cphone Functions and Operations

Introduction to BlueSoleil cphone Functions and Operations Introduction to BlueSoleil cphone Functions and Operations Contents Introduction to BlueSoleil cphone... 1 Functions and Operations... 1 1 Overview... 3 2 Operating Platforms... 3 3 Functions... 3 4 Function

More information

Programmazione di sistemi mobili e tablet

Programmazione di sistemi mobili e tablet Programmazione di sistemi mobili e tablet Android Development Carlo Menapace carlo.menapace@factorymind.com Jonny Fox WHO WE ARE Factory Mind is a young cooperative company formed by a team of engineers

More information

CTERA Agent for Linux

CTERA Agent for Linux User Guide CTERA Agent for Linux September 2013 Version 4.0 Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

Getting Started with Vision 6

Getting Started with Vision 6 Getting Started with Vision 6 Version 6.9 Notice Copyright 1981-2009 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop

More information

Installing and Activating Smaart 7

Installing and Activating Smaart 7 Rational Acoustics, LLC 241 Church Street, Suite H Putnam, CT 06260 USA Tel. (+1) 860 928-7828 www.rationalacoustics.com Installing and Activating Smaart 7 Installation of Rational Acoustics Smaart 7 is

More information

Basic Android Setup. 2014 Windows Version

Basic Android Setup. 2014 Windows Version Basic Android Setup 2014 Windows Version Introduction In this tutorial, we will learn how to set up the Android software development environment and how to implement image processing operations on an Android

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

GoldKey Software. User s Manual. Revision 7.12. WideBand Corporation www.goldkey.com. Copyright 2007-2014 WideBand Corporation. All Rights Reserved.

GoldKey Software. User s Manual. Revision 7.12. WideBand Corporation www.goldkey.com. Copyright 2007-2014 WideBand Corporation. All Rights Reserved. GoldKey Software User s Manual Revision 7.12 WideBand Corporation www.goldkey.com 1 Table of Contents GoldKey Installation and Quick Start... 5 Initial Personalization... 5 Creating a Primary Secure Drive...

More information

BounceBack User Guide

BounceBack User Guide Table Of Contents 1. Table of Contents... 2 2. 1-0 Introduction... 3 2.1 1-0: Introduction... 4 2.2 1-1: BounceBack Software Overview... 6 3. 2-0 Navigating the BounceBack Control Center... 9 3.1 2-0:

More information

Changing Your Cameleon Server IP

Changing Your Cameleon Server IP 1.1 Overview Technical Note Cameleon requires that you have a static IP address defined for the server PC the Cameleon server application runs on. Even if the server PC has a static IP address, you may

More information

FlashAir Configuration Software. User s Manual. (Windows) Revision 2

FlashAir Configuration Software. User s Manual. (Windows) Revision 2 FlashAir Configuration Software User s Manual (Windows) Revision 2 1 FlashAir Configuration Software ( Software ) Support OS: Microsoft Windows XP SP3/ Windows Vista SP2 / Windows 7 (32bit/64bit) Software

More information

KViewCenter Software User Manual 2012 / 04 / 20 Version 2.2.1.0

KViewCenter Software User Manual 2012 / 04 / 20 Version 2.2.1.0 KViewCenter Software User Manual 2012 / 04 / 20 Version 2.2.1.0 Table of Contents Chapter 1. KViewCenter Interface... 5 1.1. Log in.... 5 1.2. Log out... 5 1.3. Control Panel... 6 1.4. Control Panel (Preview

More information

Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3

Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01939-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication

More information

Frequently Asked Questions Enterprise Mobile Manager

Frequently Asked Questions Enterprise Mobile Manager Frequently Asked Questions Enterprise Mobile Manager FAQ: Enterprise Mobile Manager Contents Unable to connect the device to EMM Server... 4 Symptoms... 4 Resolution... 4 Unable to import AD into EMM Server

More information

Xperia TM. Read about how Xperia TM devices can be administered in a corporate IT environment

Xperia TM. Read about how Xperia TM devices can be administered in a corporate IT environment Xperia TM in Business Mobile Device Management Read about how Xperia TM devices can be administered in a corporate IT environment Device management clients Xperia TM T3 Exchange ActiveSync The my Xperia

More information

QUICK START GUIDE Bluetooth Cordless Hand Scanner (CHS)

QUICK START GUIDE Bluetooth Cordless Hand Scanner (CHS) QUICK START GUIDE Bluetooth Cordless Hand Scanner (CHS) 1D Imager Models CHS 7Ci, 7Di, 7DiRx LED Trigger button Power button (also for ios Keyboard Pop-up) Model shown: CHS 7Di This document pertains to

More information