1. SUPPORT PLATFORMS 2. INSTALLATION GUIDE Install Android SDK

Size: px
Start display at page:

Download "1. SUPPORT PLATFORMS 2. INSTALLATION GUIDE Install Android SDK"

Transcription

1 TABLE CONTENT 1. SUPPORT PLATFORMS INSTALLATION GUIDE Install Android SDK Setup environment Setup Android environment Set developer environment on Android Install the WebDriver APK on device or emulator REMOTE DEBUGGING FOR ANDOID Remote debugging Chrome Remote debugging Firefox Enable remote debugging on Firefox of Android device Enable remote debugging on Firefox of the desktop DELOY AUTOMATION TEST ON ANDROID... 11

2 1. SUPPORT PLATFORMS In the sense of automation testing for Android mobile device, Android WebDriver (in androidserver.apk) allows to run automated end-to-end tests that ensure your site works correctly when viewed from the Android browser. Run the tests on Android require environment supports as below: Windows XP (32-bit), Vista (32- or 64-bit), or Windows 7 (32- or 64-bit) JDK 7u60 and JRE 7 and later in (JDK version as same as JRE version) Android SDK Tools: depend on Android version to download Android SDK, see revision platforms. For example: o Android SDK r19 or higher is required for Android 4.4 o Android SDK r18 or higher is required for Android 4.3 o Android WebDriver: o android-server-2.16.apk support to Android Froyo (API level 8) o The lastest version (android-server apk, android-server apk ) support to Android 2.3.x Gingerbread (API level 9 ~ 10) Android 3.x Honeycomb (API level 11 ~ 13) Android 4.0.x Ice Cream Sandwich (API level 14 ~ 15) Android 4.1 ~ 4.3 Jelly Bean (API level 16 ~ 18) Android 4.4 KitKat (API level 19) Note that: - there is an emulator bug on Gingerbread that might cause WebDriver to crash - android-server apk is difficult to detect elements on website for automation For installing mobile emulator: o Genymotion with VirtualBox (this version includes Oracle VirtualBox ) 2. INSTALLATION GUIDE 2.1. Install Android SDK - Install Java SE Development Kit (JDK) Go to > Downloads > Java SE > JDK - Install Android SDK

3 Go to > View all download and size> SDK Tools only > Select the compressed file with your platform Extract the downloaded package to the folder name Android-sdk-xxx which have platforms, add-ons and tools Open android file in tools folders to active Android SDK Manager, stick the newest version of Android (e.g. Android API19) and install them. Note: install Google USB driver to directly run test case on device Setup environment Setup Android environment Run the test on emulators or real devices for phone and tablets a. Set up the Emulator (using Geneymotion) Registry a free account on and active new account by , then login with new account and download a package Genymotion(with VirtualBox) Go to Geneymotion application via login your account. Create a new virtual device by choosing the device (HTC One, Xperia Z, Samsung Galaxy S4, Nexus, tablet ) and clicking next to download it.

4 After finishing the download, double click your virtual machine to deploy device. b. Set up the device Simply connect your Android device through USB to your machine. Install the mobile driver on desktop to detect your device (e.g. need LGUnitedMobileDriver for LG devices).

5 Set developer environment on Android On emulator/device, go to Settings > Developer options > Turn on USB Debugging On Android 4.2 and newer, Developer options is hidden by default. To make it available, go to Settings > About phone and tap Build number 7 times. Return to the previous screen to find Developer options and check USB debugging Install the WebDriver APK on device or emulator To get the desktop and the Android device talking to each other using the adb command-line tool in Android SDK. Every device or emulator has a serial ID. Take the command line to go to android_sdk/platform-tools and run this command to get the serial ID of the device or emulator you want to use: adb devices Ex: root>adb devices Download the Android server from To install the application do: (recommend version android-server apk) adb -s <serialid> -e install -r android-server.apk Ex: root>adb s :5555 -e install r android-server apk

6 Then it appears a Webdriver application on device/emulator. Start the Android WebDriver application through the UI of the device or by running this command: adb -s <serialid> shell am start -a android.intent.action.main -n org.openqa.selenium.android.app/.mainactivity Make the android server available at from the host machine by a terminal type: adb -s <serialid> forward tcp:8080 tcp:8080 Ex: root>adb -s :5555 forward tcp:8080 tcp: REMOTE DEBUGGING FOR ANDOID

7 3.1. Remote debugging Chrome (limitation to Android 4 and up, Chrome 32 and up) Recommend this debug because it s easy to check and detect the xpath of objects on Android than Remote debugging Firefox. Check all available devices which connect to the desktop by command line adb devices Call remote Chrome devtools to detect objects of website on your device: Root>adb -s <serialid> forward tcp:9222 localabstract:chrome_devtools_remote Ex: root>adb -s :5555 forward tcp:9222 localabstract:chrome_devtools_remote To enable USB discovery in Chrome, on your desktop Chrome browser, go to chrome://inspect. Alternatively, to get to the same screen, you can select Chrome menu > Tools > Inspect Devices. Confirm that Discover USB Devices is checked:

8 There will be presented with the set of thumbnails for pages currently open in tabs on your mobile Chrome. Choose inspect link at the page you would like to debug and it will show the corresponding developer tools. To get xpath of any element on page, on tab Elements of Developer Tools, Enter Ctrl +F > type keywords to find the element which you want to detect > right click at the right element and choose Copy XPath Remote debugging Firefox (limitation to Android 2.2 and up, Firefox 24 and up) Enable remote debugging on Firefox of Android device. Type about:config on address bar of Firefox for Android, type "devtools" into the search box and press the Search key. You'll see all the devtools preferences. Find the devtools.debugger.remoteenabled preference, and press "Toggle". Open the menu, select "Settings", then "Developer tools" (on some Android devices you may need to select "More" to see the "Settings" option). Check the "Remote debugging" box: Come back the Firefox of Android device and go to the site which you want to debug (e.g. )

9 Enable remote debugging on Firefox of the desktop On the desktop, remote debugging is enabled in Developer Tools. On menu bar, choose Tools > Web Developers > Toggle Tools, then it show the DevTools in the end of page, choose Settting icon and check "Enable remote debugging": Check all available devices which connect to the desktop by command line adb devices Firefox Developer Tools can debug remote devices by default port So make connection to remote devices via default port: adb -s <serialid> forward tcp:6000 tcp:6000 On Firefox of desktop, choose Tools > Web Developers > Connect > set the suitable value and click Connect, then Firefox browser of remote devices will show the message: Press OK

10 Open the Developer Tools for remote site by choosing the link of your site on Connect page

11 4. DELOY AUTOMATION TEST ON ANDROID Note: if URL is IP address, you must install Certificate of site for Devices 1. Install certificate: 1.1. Export Certificate of site on FF: - Click on Lock icon > click on More Information button - Choose Security tab > View Certificate - Choose Details tab > click on Export - At Save as type field: choose X.509 Certificate with chain (PEM) (*.crt;*.pem) and click Save button Import Certificate into Devices: - Store Certificate file which have just exported into Devices - Go to Setting > Security > Install from SD card - Go to Folder where you store Certificate file and click on it to install - Enter Certificate Name: enter info you like, credential use: choose wifi, click on OK - Here, system require Pass for devices, don t worry, let do it. We will remove it in the moment - On Security tab, choose Screen lock > choose None. Done - Security > Trusted credentials > User. Check to make sure Certificate imported 2. Configure default driver in Capybara 1. Go to \RWFramework\Configuration 2. Open spec_helper.rb (by notepad++ or other editor) 3. Config driver to Android Webdriver

12 4. Save and close the file spec_helper.rb

What is Android? Android is an open-source operating system (OS) used in smart devices

What is Android? Android is an open-source operating system (OS) used in smart devices Phones and Tablets What is Android? Android is an open-source operating system (OS) used in smart devices Developed by Google (2005) Phones Tablets Smart TVs Watches Cars Cameras and much more... Originally

More information

Android. Lesson 1. Introduction. Android Developer Fundamentals. Android Developer Fundamentals. to Android 1

Android. Lesson 1. Introduction. Android Developer Fundamentals. Android Developer Fundamentals. to Android 1 Android Lesson 1 1 1 1.0 to Android 2 Contents Android is an ecosystem Android platform architecture Android Versions Challenges of Android app development App fundamentals 3 Android Ecosystem 4 What is

More information

Manually Install 2.2 Update Android To 4.0 In

Manually Install 2.2 Update Android To 4.0 In Manually Install 2.2 Update Android To 4.0 In Samsung Galaxy Tab The Samsung Galaxy Tab 4 10.1 Wi-Fi and LTE models are getting the Android Samsung Galaxy Tab S 8.4 Android 5.0 Lollipop Update: Download

More information

How to Install (then Test) the NetBeans Bundle

How to Install (then Test) the NetBeans Bundle How to Install (then Test) the NetBeans Bundle Contents 1. OVERVIEW... 1 2. CHECK WHAT VERSION OF JAVA YOU HAVE... 2 3. INSTALL/UPDATE YOUR JAVA COMPILER... 2 4. INSTALL NETBEANS BUNDLE... 3 5. CREATE

More information

Avira Antivirus Security (Version 3.1 SP1) Changelogs. Avira Antivirus Security Version 3.1 SP1 (Status Feb. 11, 2014) 1

Avira Antivirus Security (Version 3.1 SP1) Changelogs. Avira Antivirus Security Version 3.1 SP1 (Status Feb. 11, 2014) 1 Avira Antivirus Security (Version 3.1 SP1) Changelogs 1 1. General Information Avira Antivirus Security Version 3.1 SP1 will be released to Google Play on 11 th February 2014. 2. Highlights This release

More information

Manual Flash Install Android Adobe Tablet >>>CLICK HERE<<<

Manual Flash Install Android Adobe Tablet >>>CLICK HERE<<< Manual Flash Install Android Adobe 2.2 10.1 Tablet 1 - Install Adobe Flash Player on Android 2.2 Tablets for Online Video 2. 9 - Install the Adobe Flash Player Manually on Any Android Device Updated! 32

More information

Android Development Tools = Eclipse + ADT + SDK

Android Development Tools = Eclipse + ADT + SDK Lesson 2 Android Development Tools = Eclipse + ADT + SDK Victor Matos Cleveland State University Portions of this page are reproduced from work created and shared by Google and used according to terms

More information

Introduction To Android

Introduction To Android Introduction To Android Mobile Technologies Symbian OS ios BlackBerry OS Windows Android Introduction to Android Android is an operating system for mobile devices such as smart phones and tablet computers.

More information

Android Sdk Setup For Windows 7 32 Bit Full Version

Android Sdk Setup For Windows 7 32 Bit Full Version Android Sdk Setup For Windows 7 32 Bit Full Version Android Sdk Tools Full Installer Free Download For Windows 7,8,Xp,Vista (32 Bit/ 64 Bit) Android Sdk tools latest version full installer free download

More information

Manual Do Android 2.3 Para 4.0 Samsung Galaxy

Manual Do Android 2.3 Para 4.0 Samsung Galaxy Manual Do Android 2.3 Para 4.0 Samsung Galaxy S2 Oct 25, 2013. The Galaxy S II SGH-T989 is powered by a dual-core Snapdragon processor which has Though it ships with Android 2.3.6, the T-Mobile Samsung

More information

Android Gingerbread Manually Update To Jelly Bean Features

Android Gingerbread Manually Update To Jelly Bean Features Android Gingerbread Manually Update To Jelly Bean 4.1 2 Features How to upgrade android 4.0, 4.1, 4.1.1, 4.1.2, 4.2.2 to 4.3 jellybean, 4.4, 4.4.1, 4.4.3, 4.4. Compare versions: Android M vs Android 5.1

More information

User Guide For Android Ice Cream. Sandwich Tablet >>>CLICK HERE<<<

User Guide For Android Ice Cream. Sandwich Tablet >>>CLICK HERE<<< User Guide For Android 2.3 4.0 Ice Cream Sandwich Tablet Here's how to update Android on your smartphone or tablet. 2.3.3-2.3.7 Gingerbread, 11.4 percent were still running 4.0.4-4.0.4 Ice Cream Sandwich,

More information

Flash Player Manually For Android Apk Descargar

Flash Player Manually For Android Apk Descargar Flash Player Manually For Android 2.3 4 Apk Descargar Download Install Flash Player Videos1.0 APK for Android. Install Flash Player 4 - PLAY FLASH PLAYER ON S4, NOTE 3 ANDROID 4.4, 4.3, 4.2.2 & 4.1.2 5

More information

Android In Industrial Applications. A Field Report

Android In Industrial Applications. A Field Report Garz & Fricke Android In Industrial Applications A Field Report Android In Industrial Applications A Field Report Contents What we will talk about Garz & Fricke Company Overview Introduction to Android

More information

Preparing Rapise for Android Mobile Testing. Testing Architectures. Installation Notes

Preparing Rapise for Android Mobile Testing. Testing Architectures. Installation Notes Preparing Rapise for Android Mobile Testing Rapise lets you record and play automated tests against native applications on a variety of mobile devices using the Android operating system. Rapise gives you

More information

Downloading Java Development Kit (JDK), the Offline Client, and Utilizing the Offline Audit Tool

Downloading Java Development Kit (JDK), the Offline Client, and Utilizing the Offline Audit Tool Downloading Java Development Kit (JDK), the Offline Client, and Utilizing the Offline Audit Tool Contents Downloading Java Development Kit... 2 Downloading the Offline Client... 7 Completing Your Audit

More information

Manually Adobe Flash Player For Android Android App

Manually Adobe Flash Player For Android Android App Manually Adobe Flash Player For Android 4.0 4.3 - Android App This can be installed in your android devices by a manual process. Unfortunately the Adobe Flash Player doesn't work on Android OS beyond the

More information

Android Gingerbread Manually Update To Jelly Bean Features

Android Gingerbread Manually Update To Jelly Bean Features Android Gingerbread Manually Update To Jelly Bean 4.1.2 Features How to upgrade android 4.0, 4.1, 4.1.1, 4.1.2, 4.2.2 to 4.3 jellybean, 4.4, 4.4.1, 4.4.3, 4.4.4. Install latest Official Android 2.3.6 Gingerbread

More information

Root User Guide Android Jelly Bean Operating System

Root User Guide Android Jelly Bean Operating System Root User Guide Android 4.1 1 Jelly Bean Operating System microsoft-toolkit-2-4-6-with-keygen-downloads, Arriva Android 4.1.2 per Galaxy altium designer 13 1 2 build 27559 setup key windows In this post

More information

Access Point Connection in Departments and SSSH

Access Point Connection in Departments and SSSH Access Point Connection in Departments and SSSH 1. Access point names. i) veccse ii) vecit iii) vecece iv) vecmba v) SSSH1 2. Proxy Address for Access Point(Wi-Fi) i) For CSE(vec-cse) Proxy Address:172.16.1.2

More information

Downloading Java Development Kit (JDK) & Offline Client For Use of Reliance Offline Audit Tool

Downloading Java Development Kit (JDK) & Offline Client For Use of Reliance Offline Audit Tool Downloading Java Development Kit (JDK) & Offline Client For Use of Reliance Offline Audit Tool Contents Downloading Java Development Kit... 1 Downloading the Offline Client... 6 Downloading Java Development

More information

(Refer Slide Time: 1:07)

(Refer Slide Time: 1:07) Mobile Computing Professor Pushpedra Singh Indraprasth Institute of Information Technology Delhi Andriod Development Lecture 08 Hello, in this lecture we will deploy our application to an android phone.

More information

TLS 1.2 Browser Compatibility

TLS 1.2 Browser Compatibility TLS 1.2 Browser Due to security reasons, CUB Net banking site will be disabled on browser with SSL 1.0, SSL 2.0, SSL3.0 and TLS 1.0. The Net banking site will work on browsers with TLS 1.2 support. If

More information

Android Jelly Bean Manual Install Application On Sd Card

Android Jelly Bean Manual Install Application On Sd Card Android Jelly Bean Manual Install Application On Sd Card All of them except the sd card,have really low space and I can't install 2 but i can move apps to sdcard and my other fone which 4.1.2 doesnt have

More information

Installing and configuring an Android device emulator. EntwicklerCamp 2012

Installing and configuring an Android device emulator. EntwicklerCamp 2012 Installing and configuring an Android device emulator EntwicklerCamp 2012 Page 1 of 29 Table of Contents Lab objectives...3 Time estimate...3 Prerequisites...3 Getting started...3 Setting up the device

More information

Android Gingerbread Manually Update To Jelly Bean What's New

Android Gingerbread Manually Update To Jelly Bean What's New Android Gingerbread Manually Update To Jelly Bean 4.1 2 What's New How to upgrade android 4.0, 4.1, 4.1.1, 4.1.2, 4.2.2 to 4.3 jellybean, 4.4, 4.4.1, 4.4.3, 4.4. Introducing Lollipop, a sweet new take

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.0.0 The owncloud developers December 14, 2017 CONTENTS 1 Using the owncloud Android App 1 1.1 Getting the owncloud Android App...................................

More information

AT&T Entertainment Experience Suite Video Optimizer 1.2

AT&T Entertainment Experience Suite Video Optimizer 1.2 AT&T Entertainment Experience Suite Video Optimizer 1.2 Publication Date: September 2017 Legal Disclaimer This document and the information contained herein (collectively, the "Information") is provided

More information

Android Ice Cream Sandwich Update For Pc

Android Ice Cream Sandwich Update For Pc Android 4.0 5 Ice Cream Sandwich Update For Pc Iso Android 4.0 upgrade list: is your device getting ice cream, Android 4.0 receiving) ice cream sandwich acer iconia tab a100 (updated 5/1/12): acer delivered

More information

Manual Root Android Galaxy S2 Problems

Manual Root Android Galaxy S2 Problems Manual Root Android 4.0 4 Galaxy S2 Problems Nov 21, 2014. (*For update to ICS, Android 4.0.?, see, here.) You will then get a screen showing, "Version", with 4 lines of information. This can, of course,

More information

Welcome to. Android Tablet Basics

Welcome to. Android Tablet Basics Welcome to Android Tablet Basics Today we will Get to Know Your Tablet Learn about Settings Connect to Wi-Fi Use Google Play Store (or equivalent) Share Tips for Managing Apps Google Account What is a

More information

Android Gingerbread Manually Update To Jelly Bean

Android Gingerbread Manually Update To Jelly Bean Android Gingerbread Manually Update To Jelly Bean 4.1 2 10.1 You can also download and install/update Google Apps from Google Play Store. These apps Gapps CyanogenMod 10.1 (Android 4.2.1 4.2.2 Jelly Bean)

More information

Android Jelly Bean Manual Install On Pc In 10

Android Jelly Bean Manual Install On Pc In 10 Android Jelly Bean Manual Install On Pc In 10 Easy Steps Samsung has rolled out official update, Android 4.1.2 Jelly Bean with base firmware specific, may follow our step-by-step guide to install the update

More information

This installation guide applies to both Grok Free Edition and Grok Standard Edition products.

This installation guide applies to both Grok Free Edition and Grok Standard Edition products. Grok 1.3 Installation Guide This installation guide applies to both Grok Free Edition and Grok Standard Edition products. System Requirements Grok AMI is available in the AWS Marketplace and installation

More information

Clickteam Fusion 2.5 Android Bars - Guide CONTENTS. For more information, tutorials, examples and walk-thrus visit the website.

Clickteam Fusion 2.5 Android Bars - Guide CONTENTS. For more information, tutorials, examples and walk-thrus visit the website. 1. 2. 3. 4. 5. 6. 7. Froyo / Gingerbread Bars Honeycomb to above Bars Title or Action bar Display Status Bar Navigation Bar Controlling Navigation Bar Menu CONTENTS 1. Froyo / Gingerbread Bars From Froyo

More information

Table 1. Minimum Web Console Requirements. Browser Microsoftt Internet Explorer 9.0, 10.0, 11.0 (32 and 64 bit)

Table 1. Minimum Web Console Requirements. Browser Microsoftt Internet Explorer 9.0, 10.0, 11.0 (32 and 64 bit) System s Parent topic: Preparation Web Console Table 1. Minimum Web Console s Browser Microsoftt Internet Explorer 9.0, 10.0, 11.0 (32 and 64 bit) Mozilla Firefox 52.5.0 (ESR), 56.0.2, 57.0.1, 58.0 Google

More information

Now SMS/MMS Android Modem Quick Start Guide

Now SMS/MMS Android Modem Quick Start Guide Now SMS/MMS Android Modem Quick Start Guide Using a GSM modem, or an Android phone as a modem, is a quick and efficient way to get started with SMS and/or MMS applications. No special service provider

More information

Mobile Devices and Smartphones

Mobile Devices and Smartphones Mobile Devices and Smartphones Smartphone Modern smartphones can do almost as much as a desktop PC could. They are extremely mobile and convenient. With a proper service provider they can access the internet

More information

Silk Test Testing Mobile Applications

Silk Test Testing Mobile Applications Silk Test 17.5 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

Manual Android 2.3 Update For Tablet Pc Applications

Manual Android 2.3 Update For Tablet Pc Applications Manual Android 2.3 Update For Tablet Pc Applications Android smartphones are great devices for a myriad of different reasons. One of the things See this guide for details on connecting to a wireless network.

More information

BCA 6. Question Bank

BCA 6. Question Bank BCA 6 030010601 : Introduction to Mobile Application Development Question Bank Unit 1: Introduction to Android and Development tools Short questions 1. What kind of tool is used to simulate Android application?

More information

What is the Selendroid?

What is the Selendroid? When you publish an app to Google play, it must be well tested to avoid the potential bugs. There's a ton of test scenarios that should be executed before publishing an app. To save the testing effort,

More information

Task On Gingerbread On Ice Cream Sandwich Notification bar on lock screen Notification bar is not accessible on the lock screen.

Task On Gingerbread On Ice Cream Sandwich Notification bar on lock screen Notification bar is not accessible on the lock screen. HTC Rezound to 3.14.605.12 710RD: What s Different and New? Congratulations on updating your HTC Rezound to 3.14.605.12 710RD. You might have some questions about the new update and how you can take advantage

More information

Android App Development. Muhammad Sharjeel COMSATS Institute of Information Technology, Lahore

Android App Development. Muhammad Sharjeel COMSATS Institute of Information Technology, Lahore Android App Development Muhammad Sharjeel COMSATS Institute of Information Technology, Lahore Mobile devices (e.g., smartphone, tablet PCs, etc.) are increasingly becoming an essential part of human life

More information

Flash Player Manually For Android Tablet 2.2 Gratis

Flash Player Manually For Android Tablet 2.2 Gratis Flash Player Manually For Android Tablet 2.2 Gratis Flash Player is a free application for the Android that lets users view Flash-based applications on their mobile device. With this software, users are

More information

GfK Digital Trends App. Installation Guide & User Manual for Mozilla Firefox users

GfK Digital Trends App. Installation Guide & User Manual for Mozilla Firefox users GfK Digital Trends App Installation Guide & User Manual for Mozilla Firefox users Software version: 15.2 Effective date: 24 th August 2015 Table of contents The GfK Digital Trends App... 1 System requirements...

More information

EveryonePrint. Mobile Gateway 4.2. Installation Guide. EveryonePrint Mobile Gateway Installation Guide Page 1 of 30

EveryonePrint. Mobile Gateway 4.2. Installation Guide. EveryonePrint Mobile Gateway Installation Guide Page 1 of 30 EveryonePrint Mobile Gateway 4.2 Installation Guide EveryonePrint Mobile Gateway Installation Guide 2016.09.01 Page 1 of 30 1. Introduction... 3 1.1 Multiple networks (using Multicast Bonjour AirPrint)...

More information

Set Proxy Android Galaxy Mini 2

Set Proxy Android Galaxy Mini 2 Set Proxy Android 2.3 6 Galaxy Mini 2 Videos, Android 4.0-4.1, Android 1.6 2.3.4, Android 1.5, iphone (ios 5 or previous), iphone (ios 6), Blackberry, Dell Inspiron Mini 4G, LG, Samsung, Nokia Name:SIMPLE

More information

User Manual System Setup

User Manual System Setup System Setup Manual E-Procurement Solution Submitted to ECIL Version: 2.0 Software Development Center HCL INFOSYSTEMS LIMITED F-23, Sector 11 Noida: 201301 Copyright Notice This data shall not be disclosed

More information

12 Publishing Android Applications

12 Publishing Android Applications 12 Publishing Android Applications WHAT YOU WILL LEARN IN THIS CHAPTER How to prepare your application for deployment Exporting your application as an APK fi le and signing it with a new certificate How

More information

ECOM 5341 Mobile Computing(Android) Eng.Ruba A. Salamah

ECOM 5341 Mobile Computing(Android) Eng.Ruba A. Salamah ECOM 5341 Mobile Computing(Android) 1 Eng.Ruba A. Salamah Lecture # 2 Android Tools Objectives Understand Android Tools Setup Android Development Environment Create HelloWorld Application Understand HelloWorld

More information

Galaxy S Ii Manual Update Android 4.0 Ice Cream Sandwich Running Samsung

Galaxy S Ii Manual Update Android 4.0 Ice Cream Sandwich Running Samsung Galaxy S Ii Manual Update Android 4.0 Ice Cream Sandwich Running Samsung AT&T released a new software update for the Samsung Galaxy S II Skyrocket (i727) Requires Android 4.04 (ICS), File size: 43MB, Android

More information

Capable when run in Windows 7 or newer, but not enabled by default. Microsoft IE Desktop versions 9 and 10

Capable when run in Windows 7 or newer, but not enabled by default. Microsoft IE Desktop versions 9 and 10 On Friday February 8, 2019, NorthStar Credit Union's website will no longer support TLS version 1.0 or version 1.1 in order to maintain the highest security standards and promote the safety of member data.

More information

Manually Adobe Flash Player For Android Phone 4.0 4

Manually Adobe Flash Player For Android Phone 4.0 4 Manually Adobe Flash Player For Android Phone 4.0 4 hi, why there is no flash player for newer/est versions of android. apparently to Flash Player in the GooglePlay store for all Android devices running

More information

AT&T Developer Program

AT&T Developer Program AT&T Developer Program Application Resource Optimizer (ARO) User Guide Publication Date: April 27, 2015 Legal Disclaimer This document and the information contained herein (collectively, the "Information")

More information

Mobile phone setup guide

Mobile phone setup guide Mobile phone setup guide Introduction The purpose of this guide is to help staff set up their new mobile phone (either provided by PU or personal) by installing their SIM card, connecting to the University

More information

Installed Manually Windows Phone 8 On Android Device Driver Software Was Not Successfully

Installed Manually Windows Phone 8 On Android Device Driver Software Was Not Successfully Installed Manually Windows Phone 8 On Android Device Driver Software Was Not Successfully Numerous users of Samsung devices have complained about not being able to you will not have to use the KIES software

More information

SymantecTM Desktop and Laptop Option 8.0 SP2 Compatibility Matrix

SymantecTM Desktop and Laptop Option 8.0 SP2 Compatibility Matrix SymantecTM Desktop and Laptop Option 8.0 SP2 Compatibility Matrix Copyright 2016 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, and Backup Exec are trademarks or registered trademarks

More information

Manual Flash Install Android Adobe Apk 2.2. Tablets >>>CLICK HERE<<<

Manual Flash Install Android Adobe Apk 2.2. Tablets >>>CLICK HERE<<< Manual Flash Install Android Adobe Apk 2.2 Tablets 1 - Install Adobe Flash Player on Android 2.2 Tablets for Online Video 2 - Install 9 - Install the Adobe Flash Player Manually on Any Android Device Updated!

More information

WinZip for Android User Guide

WinZip for Android User Guide WinZip for Android User Guide WinZip for Android is available from Google Play and Amazon as a free version with a limited feature set. It can be converted to the full version by an in-app purchase. WinZip

More information

Taming Android Fragmentation: Characterizing and Detecting Compatibility Issues for Android Apps Lili Wei Yepang Liu S.C. Cheung

Taming Android Fragmentation: Characterizing and Detecting Compatibility Issues for Android Apps Lili Wei Yepang Liu S.C. Cheung Taming Android Fragmentation: Characterizing and Detecting Compatibility Issues for Android Apps Lili Wei Yepang Liu S.C. Cheung The Hong Kong University of Science and Technology 05 September 2016 Android:

More information

Manual For Android Jelly Bean Features Vs Ice

Manual For Android Jelly Bean Features Vs Ice Manual For Android Jelly Bean Features Vs Ice Cream Sandwich Tablet Succeeded by, Android 4.1 "Jelly Bean" Android 4.0 "Ice Cream Sandwich" is a version of the Android mobile operating tablet-only release

More information

Matrix 6.12 Browser Compatibility

Matrix 6.12 Browser Compatibility CarolinaMLS Matrix Version Update - 6.12 (6.11.9 included) August 21, 2015 Matrix 6.12 Browser Compatibility Matrix 6.12 is compatible with the latest browser versions supported by mainstream operating

More information

Android Sdk Install Documentation Eclipse. Ubuntu >>>CLICK HERE<<<

Android Sdk Install Documentation Eclipse. Ubuntu >>>CLICK HERE<<< Android Sdk Install Documentation Eclipse Ubuntu 12.04 These are instructions to install the Android SDK onto Ubuntu. If you are only I'm skipping the Eclipse install, sorry if you wanted. Just trying

More information

(Refer Slide Time: 1:12)

(Refer Slide Time: 1:12) Mobile Computing Professor Pushpendra Singh Indraprastha Institute of Information Technology Delhi Lecture 06 Android Studio Setup Hello, today s lecture is your first lecture to watch android development.

More information

Root User Guide Android Jelly Bean Tablet

Root User Guide Android Jelly Bean Tablet Root User Guide Android 4.1 1 Jelly Bean Tablet 1) Play and Gapps Installer for Visual Land Tablets Running JellyBean 4.1.x. Download the Jelly Bean 2) iroot (formerly vroot) Get iroot/free One Click Android

More information

Offline Audit Tool (OAT) User Guide Version 3.0

Offline Audit Tool (OAT) User Guide Version 3.0 Offline Audit Tool (OAT) User Guide Version 3.0 Contents Downloading Java Development Kit... 2 Downloading the Offline Client... 7 Completing Your Audit & Utilizing the Offline Audit Tool... 14 Importing

More information

Enabling Mobile Automation Testing using Open Source Tools

Enabling Mobile Automation Testing using Open Source Tools 1 Enabling Mobile Automation Testing using Open Source Tools Prepared by:indium Software India Ltd Name Title:Alka Arya Quality Analyst Introduction The mobile phone has evolved from communication medium

More information

Step 7 How to convert a YouTube Video to Music As I mentioned in the YouTube Introduction, you can convert a Video to a MP3 file using Free Video To

Step 7 How to convert a YouTube Video to Music As I mentioned in the YouTube Introduction, you can convert a Video to a MP3 file using Free Video To Step 7 How to convert a YouTube Video to Music As I mentioned in the YouTube Introduction, you can convert a Video to a MP3 file using Free Video To MP3 Converter program. Next I will show you how to download

More information

Choose OS and click on it

Choose OS and click on it 1. Installation: 1.1. Install Node.js. Cordova runs on the Node.js platform, which needs to be installed as the first step. Download installer from: https://nodejs.org/en/download/ 1.1.1. Choose LTS version,

More information

Flash Player Manual Install Android >>>CLICK HERE<<<

Flash Player Manual Install Android >>>CLICK HERE<<< Flash Player Manual Install Android 4.1 10.1 9 - Install the Adobe Flash Player Manually on Any Android Device Updated! 16 - Play Flash on Android 4.1 - Watch Flash Animation on LG Optimus G Pro 32 - Flash

More information

Android Sdk Tutorial For Windows 7 64 Bit Full Version

Android Sdk Tutorial For Windows 7 64 Bit Full Version Android Sdk Tutorial For Windows 7 64 Bit Full Version I will be doing the same tutorial for Windows 7 next. First of all you need to know which. Windows XP (32-bit), Vista (32- or 64-bit), or Windows

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

Clear Cache Guide Click here for Windows guide Click here for Mac OS guide

Clear Cache Guide Click here for Windows guide Click here for Mac OS guide Velocity@ocbc Clear Cache Guide Click here for Windows guide Click here for Mac OS guide Version 1.0 1 of 18 Step 1: Check your browser version 1. Type www.whatismybrowser.com at the address bar and press

More information

Frp bypass in samsung!

Frp bypass in samsung! Frp bypass in samsung! Aug 10, 2016. Universal Samsung FRP Bypass. nexus2cee_frp (1). Here are the steps to remove factory reset protection / Google previously synced account lock from your Samsung device.

More information

Ace S5830i With Ics Android 4.0

Ace S5830i With Ics Android 4.0 Instructions How To Use Samsung Galaxy Ace S5830i With Ics Android 4.0 Samsung galaxy tab plus 7.0 gt-p6200 - android rom update, Here's the manual procedure on how to upgrade the samsung galaxy tab plus

More information

CS260 Intro to Java & Android 04.Android Intro

CS260 Intro to Java & Android 04.Android Intro CS260 Intro to Java & Android 04.Android Intro Winter 2015 Winter 2015 CS260 - Intro to Java & Android 1 Android - Getting Started Android SDK contains: API Libraries Developer Tools Documentation Sample

More information

ELET4133: Embedded Systems. Topic 3 Eclipse Tour & Building a First App

ELET4133: Embedded Systems. Topic 3 Eclipse Tour & Building a First App ELET4133: Embedded Systems Topic 3 Eclipse Tour & Building a First App Agenda In this class we will look at the Eclipse IDE We will examine it s various parts when working on an application We will load

More information

MAY-i Check User Guide Version June 2013

MAY-i Check User Guide Version June 2013 7100 Woodbine Avenue Suite 305 Markham, Ontario L3R 5J2 Canada (T) 1.888.697.7772 (F) 1.888.564.7729 sales@mayicorp.ca MAY-i Check User Guide Version 1.9.6 June 2013 Table of Contents Getting to know the

More information

Manual Android Galaxy S2 Update Update What's News

Manual Android Galaxy S2 Update Update What's News Manual Android Galaxy S2 Update 4.0 4 Update What's News Step-by-step guide to update international variants of Galaxy S2 (GT-I9100) and IBTimes UK reminds readers that it will not be held liable for any

More information

Steps to View Online Lectures

Steps to View Online Lectures Steps to View Online Lectures Panopto recordings can be viewed on a multitude of operating systems such as Windows XP, Windows Vista, and Mac OS X (Intel Only) Panopto is also compatible with most major

More information

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 From Cisco s website, here are the minimum requirements for CCP 2.7 and CCP 2.8: The following info comes from many

More information

Firmware install with Windows XP

Firmware install with Windows XP Firmware install with Windows XP Step 1. Go to our website www.midnitesolar.com and Left Click on Firmware. Step 2. Left Click on Download Firmware. Step 3. Read the Notes in red first and then Left Click

More information

GfK Digital Trends App. Installation Guide & User Manual for Google Chrome users

GfK Digital Trends App. Installation Guide & User Manual for Google Chrome users GfK Digital Trends App Installation Guide & User Manual for Google Chrome users Software version: 15.2 Effective date: 24 th August 2015 Table of contents The GfK Digital Trends App... 1 System requirements...

More information

UNIT:2 Introduction to Android

UNIT:2 Introduction to Android UNIT:2 Introduction to Android 1 Syllabus 2.1 Overview of Android 2.2 What does Android run On Android Internals? 2.3 Android for mobile apps development 2.5 Environment setup for Android apps Development

More information

Bbm User Guide For Android Tablet

Bbm User Guide For Android Tablet Bbm User Guide For Android Tablet 4.0 4.2.2 Mobile users can also access their Microsoft Dynamics CRM 2015, Microsoft Tablets. Microsoft Dynamics CRM for ipad. 3rd generation or later with 9 (diagonal)

More information

SymantecTM Desktop and Laptop Option 8.0 SP4 Compatibility Matrix Version 1.1

SymantecTM Desktop and Laptop Option 8.0 SP4 Compatibility Matrix Version 1.1 SymantecTM Desktop and Laptop Option 8.0 SP4 Compatibility Matrix Version 1.1 Created on 14 September 2016 Copyright 2016 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, and Backup

More information

Manual Internet Explorer 10 Xp Mac Version Offline Installer

Manual Internet Explorer 10 Xp Mac Version Offline Installer Manual Internet Explorer 10 Xp Mac Version Offline Installer Does Microsoft still have a link to download IE10 for Windows 7? No problem. We won't show you Try these Microsoft offline installer links:

More information

Supported Operating Systems, Browsers, Networks, and Stores Phone Channel Supported Operating Systems

Supported Operating Systems, Browsers, Networks, and Stores Phone Channel Supported Operating Systems Supported Operating Systems, s, Networks, and Stores Phone Channel Supported Operating Systems NOTE: Only major versions released directly by OEMs (Apple or any Android hardware manufacturer) are included.

More information

Chapter 2: Android Device Basics

Chapter 2: Android Device Basics Chapter 2: Android Device Basics 1 Chapter 2: Android Device Basics Android devices have a ton of cool features and are really fun to play with, but they have a very practical side as well. We ll touch

More information

Guide to add as trusted site in Java 8 Update 51. Version of 24 OCBC Bank. All Rights Reserved

Guide to add   as trusted site in Java 8 Update 51. Version of 24 OCBC Bank. All Rights Reserved Velocity@ocbc Guide to add https://bbmy.ocbc.com as trusted site in Java 8 Update 51 Version 1.1 220815 1 of 24 Contents Java 8 Update 60 (difficulty logging into Velocity@ocbc)... 3 Uninstall Java Prior

More information

Guide for Windows users with Internet Explorer and Firefox

Guide for Windows users with Internet Explorer and Firefox Velocity@ocbc Guide for Windows users with Internet Explorer and Firefox Version 2.0 070513 1 of 18 Check the Java version 1. Launch a browser and go to http://www.java.com/en/download/installed.jsp?detect=jre

More information

KAIST SSL VPN USER MANUAL

KAIST SSL VPN USER MANUAL KAIST SSL VPN USER MANUAL 2016. 9 목차 제 1 장 DESKTOP USER 1. Microsoft Windows 2. MACKINTOSH MAC 제 2 장 MOBILE USER (p98) 1. ANDROID PHONE 2. IPHONE 1.2.1 MAC 10.9 USER Above p13 1.2.2 MAC 10.7 USER Above

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

How To Manually Turn Off Display Windows 7

How To Manually Turn Off Display Windows 7 How To Manually Turn Off Display Windows 7 Shortcut Keys The simplest way to save energy is by manually turning off your monitor whenever be a manual display shutdown command attributed to one of your

More information

Adobe Marketing Cloud Bloodhound for Mac 3.0

Adobe Marketing Cloud Bloodhound for Mac 3.0 Adobe Marketing Cloud Bloodhound for Mac 3.0 Contents Adobe Bloodhound for Mac 3.x for OSX...3 Getting Started...4 Processing Rules Mapping...6 Enable SSL...7 View Hits...8 Save Hits into a Test...9 Compare

More information

Started with Android Programming for Tablets

Started with Android Programming for Tablets 1Getting Started with Android Programming for Tablets WHAT YOU WILL LEARN IN THIS CHAPTER What is Android? Android versions and its feature set The Android architecture The various Android devices on the

More information

Step 4 Part F - How to Download a Video on YouTube and Delete a Video

Step 4 Part F - How to Download a Video on YouTube and Delete a Video Step 4 Part F - How to Download a Video on YouTube and Delete a Video When you finish Edit your Video on your YouTube account and save it or save as new Video, you may want to Download it to your computer.

More information

CyberTools for Libraries Catalog Functions ,

CyberTools for Libraries Catalog Functions , CyberTools for Libraries Catalog Functions 2017-05-19, 2017-07-06 A. Workstation requirements B. How does the new method differ from the old method? C. How it works D. Workstation and browser notes 1.

More information

SMART (Samsung Multiple Automatic Re-flash Tool) User Guide - For Managers

SMART (Samsung Multiple Automatic Re-flash Tool) User Guide - For Managers SMART (Samsung Multiple Automatic Re-flash Tool) User Guide - For Managers Copyright 2012 Samsung Electronics Co. Ltd. All rights reserved. Ver. 5.0 / SMART 3.12.0211 05.03.2012 1. What is SMART? With

More information