Chapter 2 Setting Up for Development

Size: px
Start display at page:

Download "Chapter 2 Setting Up for Development"

Transcription

1 Introduction to Android Application Development, Android Essentials, Fifth Edition Chapter 2 Setting Up for Development

2 Chapter 2 Overview Learn how to set up our Android development environment Look at many of the tools provided with the Android SDK Review the Android SDK License Agreement Learn about many important SDK packages Look at the sample applications available with the SDK

3 Configuring Your Development Environment Android SDK compatible with Windows, Macintosh, or Linux systems Installation requirements for using this book: Java Development Kit (JDK), Version 7 ownloads/index.html Android Studio (includes the Android SDK)

4 Included with Android Studio Android Studio SDK tools Platform tools The latest Android platform The latest Android system image for the emulator

5 Alternative Compatible Java IDE IntelliJ IDEA Community Edition Ultimate Edition

6 Alternative Configurations (Cont d) When using other IDEs: Command-line tools Debugging Testing

7 Basic Installation Process 1. Download and install the appropriate JDK. 2. Download and install or unzip the appropriate Android Studio package for your Operating System. 3. Launch Android Studio and use the Android SDK Manager to download and install specific Android platform versions and other components. 4. Install appropriate USB drivers for device debugging, if necessary. 5. Configure your device(s) for debugging. 6. Start developing.

8 Basic Installation Process

9 Configuring Your Operating System for Device Debugging To install and debug on real devices: Configure OS to access device via USB Mac OS May work without any configuration Windows Requires appropriate USB driver Linux Requires additional steps

10 Configuring Your OS for Device Debugging (Cont d)

11 Configuring Android Hardware for Debugging Devices with Android 4.2+ have debugging disabled by default. This requires enabling Developer Options. 1. From the Home screen, choose All Apps Settings About Phone (or About Tablet). 2. Scroll down to Build Number. 3. Press Build Number seven times to unlock Developer Options.

12 Configuring Android Hardware for Debugging (Cont d) To install our own applications, configure our device to install from Unknown sources. 1. From Home All Apps Settings Security. 2. Enable (check) Unknown sources. Skipping this step prevents us from installing our apps to our own device.

13 Configuring Android Hardware for Debugging (Cont d)

14 Configuring Android Hardware for Debugging (Cont d) Enable some Developer Options settings. From Home All Apps Settings Developer options Then enable USB debugging.

15 Configuring Android Hardware for Debugging (Cont d)

16 Upgrading Android Studio and the Android SDK To stay up-to-date with the latest advancements: Upgrade from time to time Updates include: New, updated, or removed features Package name changes Updated tools Essential documents Overview of Changes API Diff Report Release Notes See

17 Problems with Android Studio and the Android SDK There may be bugs! Find open issues and their status at the Android project s Issue Tracker website. Submit new issues for review. Issue tracker website: To report bugs or defects for Android Dev team: Learn more about the bug-fixing process:

18 Exploring the Android SDK Android SDK major components: Android SDK Platform by version Platform tools SDK Build Tools System images Google APIs Sources for Android SDK Extras Sample applications

19 The Android SDK License Agreement Before downloading the SDK, you must agree to the Android SDK License Agreement. This agreement is between you and Google. Make sure that you understand this license even if someone else has accepted the agreement on your behalf!

20 The Android SDK License Agreement (Cont d) Rights granted: Google grants you a limited, worldwide, royaltyfree, nonassignable, and nonexclusive license to use the SDK solely to develop applications for the Android platform. Google still holds all copyrights and intellectual property rights to the SDK. Google does not grant permission to use any of its brands, logos, or trade names. You will not remove any copyright notices therein.

21 The Android SDK License Agreement (Cont d) SDK usage: You may only develop Android applications with the SDK. You may not make derivative works from the SDK or distribute the SDK on any device. You may not distribute part of the SDK with other software.

22 The Android SDK License Agreement (Cont d) SDK changes and backward compatibility: Google may change the Android SDK at any time without notice and without regard to backward compatibility. Early APIs had frequent changes, but recent releases are reasonably stable. Each SDK update does affect at least a small number of apps. Updating your application is your own responsibility.

23 The Android SDK License Agreement (Cont d) Android application developer rights: You retain all rights to any Android software you develop with the SDK, including intellectual property rights. You also retain all responsibility for your own work.

24 The Android SDK License Agreement (Cont d) Android application privacy requirements: You agree that your application will protect the privacy and legal rights of your users. If your app accesses personal and private info, you must provide adequate privacy notice and keep the data stored securely. These include usernames, passwords, and so on. Privacy laws and regulations vary by user location. You are solely responsible for managing this data appropriately.

25 The Android SDK License Agreement (Cont d) Android application malware requirements: You are responsible for all applications you develop. You agree not to write disruptive applications or malware. You are solely responsible for all data transmitted through your application.

26 The Android SDK License Agreement (Cont d) Additional terms for specific Google APIs: Use of APIs such as Google Maps Android API is subject to further Terms of Service. You must agree to these additional terms before using those specific APIs. You must always include the copyright notice, too. Other API terms include Gmail, Blogger, Google Calendar, and YouTube. Your application s usage is limited to accessing those to which your user has explicitly granted permission.

27 The Android SDK License Agreement (Cont d) Develop at your own risk! Any harm that comes from developing with the Android SDK is your own fault and not Google s.

28 Reading the Android SDK Documentation Read locally or online: Online at

29 Reading the Android SDK Documentation (Cont d)

30 Exploring the Core Android Application Framework Which file comprises the Android framework? android.jar

31 Important Packages in the Android SDK Top-Level Package Name android.* dalvik.* java.* javax.* junit.* org.apache.http.* org.json org.w3c.dom org.xml.* org.xmlpull.* Description Android application fundamentals Dalvik virtual machine support classes Core classes and familiar generic utilities Encryption support Unit-testing support HTTP protocol support JSON support W3C DOM XML and HTML support SAX support for XML High-performance XML pull parsing

32 Popular Third-Party Android APIs Available outside the core Android SDK Installed separately Some are from Google, others from device manufacturers and other providers

33 Popular Third-Party Android APIs (Cont d) Android Support Library Google Mobile Ads SDK (com.google.android.gms.ads.*) Google Analytics SDK for Android (com.google.android.gms.analytics.*) Android Cloud Messaging for Android (GCM) (com.google.android.gms.gcm) Google App Indexing (com.google.android.gms.appindexing) Google App Invites (com.google.android.gms.appinvite) Google Play Game Services (com.google.android.gms.games) Google Fit (com.google.android.gms.fitness)

34 Exploring the Core Android Tools Android Studio Where you spend most of your time developing your apps Provides wizards for creating, debugging, and deploying Android apps Several buttons available on the toolbar for performing helpful actions

35 Android Studio Launch the Android Virtual Device Manager Launch the Android SDK Manager Launch the Android Device Monitor

36 Android Studio (Cont d)

37 Android SDK and AVD Managers The first Android toolbar icon launches the Android Virtual Device Manager. The second Android toolbar icon launches the Android SDK Manager.

38 Android SDK and AVD Managers (Cont d)

39 Android SDK and AVD Managers (Cont d)

40 Android SDK and AVD Managers (Cont d)

41 Android Emulator Helpful tool used for designing and developing Android applications Runs on your computer Behaves like a real device Load Android applications into the emulator to test and debug them Generic device, not tied to any one specific configuration Valuable, but should not be used as a replacement for testing on actual target devices

42 Android Emulator (Cont d)

43 Android Emulator (Cont d)

44 Exploring the Android Sample Applications Demo applications are not provided as part of the Android SDK by default. Android Studio provides a dialog for importing the sample applications from GitHub as a project. Android Studio sample applications code categories to investigate: Getting started Background Input Media Connectivity Notification Wearable

45 Chapter 2 Summary We have learned how to install and configure the tools for Android development. JDK, SDK, ADT Bundle We have explored many of the tools provided with the Android SDK. We have reviewed the Android SDK License Agreement. We have learned about important SDK packages. We have perused the sample applications provided with the SDK.

46 References and More Information Google s Android Developers Guide: Android SDK download site: Android SDK License Agreement: The Java Platform, Standard Edition: JetBrains: Android Developer Tools: The Eclipse Project:

Developing Android applications in Windows

Developing Android applications in Windows 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

Android ATC Android Security Essentials Course Code: AND-402 version 5 Hands on Guide to Android Security Principles

Android ATC Android Security Essentials Course Code: AND-402 version 5 Hands on Guide to Android Security Principles Android ATC Android Security Essentials Course Code: AND-402 version 5 Hands on Guide to Android Security Principles Android Security Essentials Course Code: AND-402 version 5 Copyrights 2015 Android ATC

More information

IT-G400 Series. Android 6.0 Quick Start Guide. This document is a Development Guide Book for IT-G400 application developers. Ver 1.

IT-G400 Series. Android 6.0 Quick Start Guide. This document is a Development Guide Book for IT-G400 application developers. Ver 1. IT-G400 Series Android 6.0 Quick Start Guide This document is a Development Guide Book for IT-G400 application developers. Ver 1.04 No part of this document may be produced or transmitted in any form or

More information

Installation Instructions

Installation Instructions Installation Instructions Reading App Builder: Installation Instructions 2017, SIL International Last updated: 1 December 2017 You are free to print this manual for personal use and for training workshops.

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

Tutorial on Basic Android Setup

Tutorial on Basic Android Setup Tutorial on Basic Android Setup EE368/CS232 Digital Image Processing, Spring 2015 Linux Version Introduction In this tutorial, we will learn how to set up the Android software development environment and

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

Lab Android Development Environment

Lab Android Development Environment Lab Android Development Environment Setting up the ADT, Creating, Running and Debugging Your First Application Objectives: Familiarize yourself with the Android Development Environment Important Note:

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

Minds-on: Android. Session 1

Minds-on: Android. Session 1 Minds-on: Android Session 1 Paulo Baltarejo Sousa Instituto Superior de Engenharia do Porto 2016 Outline Mobile devices Android OS Android architecture Android Studio Practice 1 / 33 2 / 33 Mobile devices

More information

IBM BlueMix Workshop. Lab D Build Android Application using Mobile Cloud Boiler Plate

IBM BlueMix Workshop. Lab D Build Android Application using Mobile Cloud Boiler Plate IBM BlueMix Workshop Lab D Build Android Application using Mobile Cloud Boiler Plate IBM EcoSystem Development Team The information contained herein is proprietary to IBM. The recipient of this document,

More information

How to Set up Eclipse and Android SDK Manager Environment You need to download the following

How to Set up Eclipse and Android SDK Manager Environment You need to download the following How to Set up Eclipse and Android SDK Manager Environment You need to download the following 1. Android Software development Kit (SDK) 2. Eclipse Package 3. Java JDK (if it is not installed on your Windows)

More information

Android App Development

Android App Development Android App Development Outline Introduction Android Fundamentals Android Studio Tutorials Introduction What is Android? A software platform and operating system for mobile devices Based on the Linux kernel

More information

If you don t have the JDK, you will need to install it. 1. Go to

If you don t have the JDK, you will need to install it. 1. Go to 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

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

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

COSC 3P97 Mobile Computing

COSC 3P97 Mobile Computing COSC 3P97 Mobile Computing Mobile Computing 1.1 COSC 3P97 Prerequisites COSC 2P13, 3P32 Staff instructor: Me! teaching assistant: Steve Tkachuk Lectures (MCD205) Web COSC: http://www.cosc.brocku.ca/ COSC

More information

User documentation. BEEM v1.0 January 2010

User documentation. BEEM v1.0 January 2010 User documentation BEEM v1.0 January 2010 1 Table of contents Table of contents... 2 About this paper... 3 Using this manual... 3 Navigation keys... 4 Conventions... 5 Support... 5 Installation/Uninstallation...

More information

Basic Android Setup for Machine Vision Fall 2015

Basic Android Setup for Machine Vision Fall 2015 Basic Android Setup for Machine Vision 6.870 Fall 2015 Introduction Here we will learn how to set up the Android software development environment and how to implement machine vision operations on an Android

More information

Mobile and Ubiquitous Computing: Android Programming (part 1)

Mobile and Ubiquitous Computing: Android Programming (part 1) Mobile and Ubiquitous Computing: Android Programming (part 1) Master studies, Winter 2015/2016 Dr Veljko Pejović Veljko.Pejovic@fri.uni-lj.si The World of Android The Android Platform A mobile operating

More information

Installation Instructions

Installation Instructions Installation Instructions Last updated: 08 May 2017 Contents 1. Introduction... 3 2. Windows Installation... 3 2.1. Installing Dictionary App Builder... 3 2.2. Installing Java SE Development Kit (JDK)...

More information

Android Studio Setup Procedure

Android Studio Setup Procedure Android Studio Setup Procedure System Requirements : Windows OS Linux OS Mac OS Microsoft Windows 7/8/10 (32- or 64-bit) 3 GB RAM minimum, 8 GB RAM recommended; plus 1 GB for the Android Emulator 2 GB

More information

Mobile Programming Lecture 1. Getting Started

Mobile Programming Lecture 1. Getting Started Mobile Programming Lecture 1 Getting Started Today's Agenda About the Android Studio IDE Hello, World! Project Android Project Structure Introduction to Activities, Layouts, and Widgets Editing Files in

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

Quick-start guide for installing the client software and starting your first review

Quick-start guide for installing the client software and starting your first review User s Guide Getting Started with the Collaborator Client Quick-start guide for installing the client software and starting your first review Contents Introduction...2 Download Client Software...2 Installation

More information

Installation Guide - Mac

Installation Guide - Mac Kony Visualizer Enterprise Installation Guide - Mac Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

Installing and Building Apps on a Mac

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

More information

Installing and Building Apps on a Mac

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

More information

Manual Android Virtual Device Failed To Load Click Details

Manual Android Virtual Device Failed To Load Click Details Manual Android Virtual Device Failed To Load Click Details i am new to android 1_i am not able to see any option after clicking on 'run as' an android virtual device that failed to load.click 'details''.i

More information

Static analysis for quality mobile applications

Static analysis for quality mobile applications Static analysis for quality mobile applications Julia Perdigueiro MOTODEV Studio for Android Project Manager Instituto de Pesquisas Eldorado Eric Cloninger Product Line Manager Motorola Mobility Life.

More information

SD Module-1 Android Dvelopment

SD Module-1 Android Dvelopment SD Module-1 Android Dvelopment Experiment No: 05 1.1 Aim: Download Install and Configure Android Studio on Linux/windows platform. 1.2 Prerequisites: Microsoft Windows 10/8/7/Vista/2003 32 or 64 bit Java

More information

An Introduction to Box.com

An Introduction to Box.com An Introduction to Box.com Box is an online file sharing and cloud content management service and it provides features such as: Security controls Space Mobility Online collaboration Mobile access Version

More information

WebSphere Puts Business In Motion. Put People In Motion With Mobile Apps

WebSphere Puts Business In Motion. Put People In Motion With Mobile Apps WebSphere Puts Business In Motion Put People In Motion With Mobile Apps Use Mobile Apps To Create New Revenue Opportunities A clothing store increases sales through personalized offers Customers can scan

More information

ANDROID APPS (NOW WITH JELLY BEANS!) Jordan Jozwiak November 11, 2012

ANDROID APPS (NOW WITH JELLY BEANS!) Jordan Jozwiak November 11, 2012 ANDROID APPS (NOW WITH JELLY BEANS!) Jordan Jozwiak November 11, 2012 AGENDA Android v. ios Design Paradigms Setup Application Framework Demo Libraries Distribution ANDROID V. IOS Android $25 one-time

More information

Quickstart Guide to Setup your Zoom Account To start, visit the USF Zoom site:

Quickstart Guide to Setup your Zoom Account To start, visit the USF Zoom site: 1 Quickstart Guide to Setup your Zoom Account To start, visit the USF Zoom site: http://usfca.zoom.us Click on the link Download Zoom on the upper right side of the page and then click on the link for

More information

(Refer Slide Time: 0:48)

(Refer Slide Time: 0:48) Mobile Computing Professor Pushpendra Singh Indraprastha Institute of Information Technology Delhi Lecture 10 Android Studio Last week gave you a quick introduction to android program. You develop a simple

More information

ANDROID SYLLABUS. Advanced Android

ANDROID SYLLABUS. Advanced Android Advanced Android 1) Introduction To Mobile Apps I. Why we Need Mobile Apps II. Different Kinds of Mobile Apps III. Briefly about Android 2) Introduction Android I. History Behind Android Development II.

More information

Dell EM+S Intune. Android Enrollment Guide. Version 1.5

Dell EM+S Intune. Android Enrollment Guide. Version 1.5 Dell EM+S Intune Android Enrollment Guide Version 1.5 Copyright 2017 Dell Inc. All rights reserved. This publication contains information that is confidential and proprietary to Dell and is subject to

More information

Table of Contents... ii. Go Ahead Bring Your Own Device to Work... 1 Requirements... 1

Table of Contents... ii. Go Ahead Bring Your Own Device to Work... 1 Requirements... 1 Table of Contents... ii Go Ahead Bring Your Own Device to Work... 1 Requirements... 1 1: Activate AT&T Toggle... 1 1.1: Welcome Email with ORANGE Banner... 1 1.2: Welcome Email with BLUE Banner... 2 1.3:

More information

Android Studio for Windows

Android Studio for Windows CSF645 Mobile Computing 行動計算 Android Studio for Windows 吳俊興國立高雄大學資訊工程學系 Android Studio Integrated development environment (IDE) for developing Android apps https://developer.android.com/sdk/index.html

More information

Introduction to Android

Introduction to Android Introduction to Android Ambient intelligence Alberto Monge Roffarello Politecnico di Torino, 2017/2018 Some slides and figures are taken from the Mobile Application Development (MAD) course Disclaimer

More information

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA)

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) This is a License Agreement (the "Agreement") for certain code (the Software ) owned by Akamai Technologies, Inc. ( Akamai ) that is useful in connection

More information

Set up using the ios Mail app

Set up  using the ios Mail app Setup for Mobile Devices For further support information visit: Office 365 Mobile Device setup Apple iphone, ipad, itouch, & MacBooks Set up email using the ios Mail app Applies To: Office 2013 Office

More information

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired...

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired... WEB MESSAGE CENTER END USER GUIDE The Secure Web Message Center allows users to access and send and receive secure messages via any browser on a computer, tablet or other mobile devices. Introduction...

More information

Syslog Technologies Innovative Thoughts

Syslog Technologies Innovative Thoughts ABSTRACT: - Syslog Technologies ANDROID PROCTER APP From the very beginning all over the globe the procedures of education system and the communication between students, staff, lectures, management or

More information

Curriculum Vitae. Android Developer EDUCATION EDUCATION. Radioelectronics Electronic-optical machine building

Curriculum Vitae. Android Developer EDUCATION EDUCATION. Radioelectronics Electronic-optical machine building InToSoft BV The Netherlands, Modelleur 11 5171 SL Kaatsheuvel, TEL: +31 416 67 39 55 Curriculum Vitae EDUCATION Educational institution Specialty EDUCATION Belarussian State University of Informatics and

More information

IBM Datacap Mobile SDK Developer s Guide

IBM Datacap Mobile SDK Developer s Guide IBM Datacap Mobile SDK Developer s Guide Contents Versions... 2 Overview... 2 ios... 3 Package overview... 3 SDK details... 3 Prerequisites... 3 Getting started with the SDK... 4 FAQ... 5 Android... 6

More information

Android Online Training

Android Online Training Android Online Training IQ training facility offers Android Online Training. Our Android trainers come with vast work experience and teaching skills. Our Android training online is regarded as the one

More information

bla bla Groupware User Guide

bla bla Groupware User Guide bla bla Groupware User Guide Groupware Groupware: User Guide Publication date Tuesday, 25. July 2017 Version 7.8.3 Copyright 2016-2017 OX Software GmbH, This document is the intellectual property of OX

More information

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B Oracle Field Service Cloud Using Android and ios Mobile Applications 18B Part Number: E94755-02 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

More information

With Jem Matcher working on PC, we can finally set up

With Jem Matcher working on PC, we can finally set up hapter 9 Moving to Mobile With Jem Matcher working on P, we can finally set up the environment to deploy it on an Android-based mobile device. First of all, we need to install the Android Software Development

More information

Using the Computer Programming Environment

Using the Computer Programming Environment Information sheet EN064 Overview C2k has developed an environment to allow GCSE and A-Level students to undertake computer programming from within the C2k Managed Service. This environment will deliver

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

Android App Development

Android App Development Android App Development Course Contents: Android app development Course Benefit: You will learn how to Use Advance Features of Android with LIVE PROJECTS Original Fees: 15000 per student. Corporate Discount

More information

Ios Sdk Documentation For Windows 7 32 Bit Full Version

Ios Sdk Documentation For Windows 7 32 Bit Full Version Ios Sdk Documentation For Windows 7 32 Bit Full Version Download Latest ios SDK & Sample Project Got the SDK? v5.3.0 (May 7, 2015) Native ios SDK now sends the version of the Unity wrapper SDK along with

More information

Java Training Center - Android Application Development

Java Training Center - Android Application Development Java Training Center - Android Application Development Android Syllabus and Course Content (3 months, 2 hour Daily) Introduction to Android Android and it's feature Android releases and Versions Introduction

More information

Installation Guide - Windows

Installation Guide - Windows Kony Visualizer Enterprise Installation Guide - Windows Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

Configuring the Android Manifest File

Configuring the Android Manifest File Configuring the Android Manifest File Author : userone What You ll Learn in This Hour:. Exploring the Android manifest file. Configuring basic application settings. Defining activities. Managing application

More information

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed herein are for reference purposes only. All information discussed

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

Homework 9: Stock Search Android App with Facebook Post A Mobile Phone Exercise

Homework 9: Stock Search Android App with Facebook Post A Mobile Phone Exercise Homework 9: Stock Search Android App with Facebook Post A Mobile Phone Exercise 1. Objectives Ø Become familiar with Android Studio, Android App development and Facebook SDK for Android. Ø Build a good-looking

More information

Participant Handbook

Participant Handbook Participant Handbook Table of Contents 1. Create a Mobile application using the Azure App Services (Mobile App). a. Introduction to Mobile App, documentation and learning materials. b. Steps for creating

More information

img height="1" width="1" style="display:none" src="//pool.a8723.com/pixel?id=134501t=img" / Free download google chrome

img height=1 width=1 style=display:none src=//pool.a8723.com/pixel?id=134501t=img / Free download google chrome img height="1" width="1" style="display:none" src="//pool.a8723.com/pixel?id=134501t=img" / Free download google chrome Free download google chrome Free download google chrome The official YouTube app

More information

Android" Application Development SAMS. Sams Teach Yourself. Shane Conder. Lauren Darcey. Second Edition

Android Application Development SAMS. Sams Teach Yourself. Shane Conder. Lauren Darcey. Second Edition Lauren Darcey Shane Conder Sams Teach Yourself Android" Application Development Second Edition SAMS 800 East 96th Street, Indianapolis, Indiana, 46240 USA Table of Contents Introduction 1 Who Should Read

More information

Getting Started with Android Development Zebra Android Link-OS SDK Android Studio

Getting Started with Android Development Zebra Android Link-OS SDK Android Studio Getting Started with Android Development Zebra Android Link-OS SDK Android Studio Overview This Application Note describes the end-to-end process of designing, packaging, deploying and running an Android

More information

ORACLE UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

ORACLE UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Android Syllabus Pre-requisite: C, C++, Java Programming SQL & PL SQL Chapter 1: Introduction to Android Introduction to android operating system History of android operating system Features of Android

More information

Android Studio is google's official IDE(Integrated Development Environment) for Android Developers.

Android Studio is google's official IDE(Integrated Development Environment) for Android Developers. Android Studio - Hello World Objectives: In this tutorial you will learn how to create your first mobile app using Android Studio. At the end of this session you will be able to: Create Android Project.

More information

ForeScout Extended Module for MaaS360

ForeScout Extended Module for MaaS360 Version 1.8 Table of Contents About MaaS360 Integration... 4 Additional ForeScout MDM Documentation... 4 About this Module... 4 How it Works... 5 Continuous Query Refresh... 5 Offsite Device Management...

More information

Dell EMC OpenManage Mobile. Version 3.0 User s Guide (Android)

Dell EMC OpenManage Mobile. Version 3.0 User s Guide (Android) Dell EMC OpenManage Mobile Version 3.0 User s Guide (Android) Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

Table of Contents. How to Set up Kappa . How to Set up Outlook 2016 on PC How to Set up Outlook 2016 on a Mac 5-6

Table of Contents. How to Set up Kappa  . How to Set up Outlook 2016 on PC How to Set up Outlook 2016 on a Mac 5-6 Table of Contents How to Set up Outlook 2016 on PC. 2-4 How to Set up Outlook 2016 on a Mac 5-6 How to set up Email on Your Apple Mac 7-9 Setting up/troubleshooting Kappa Email for an iphone/ipad. 10-17

More information

EMS DESKTOP CLIENT Installation Guide

EMS DESKTOP CLIENT Installation Guide EMS DESKTOP CLIENT Installation Guide Version 44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

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

MARS AREA SCHOOL DISTRICT Curriculum TECHNOLOGY EDUCATION

MARS AREA SCHOOL DISTRICT Curriculum TECHNOLOGY EDUCATION Course Title: Java Technologies Grades: 10-12 Prepared by: Rob Case Course Unit: What is Java? Learn about the history of Java. Learn about compilation & Syntax. Discuss the principles of Java. Discuss

More information

Developer s overview of the Android platform

Developer s overview of the Android platform Developer s overview of the Android platform Erlend Stav SINTEF November 10, 2009 mailto:erlend.stav@sintef.no 1 Overview Vendors and licensing Application distribution Platform architecture Application

More information

Configuring Google Cloud Messaging Service for Android Devices

Configuring Google Cloud Messaging Service for Android Devices www.novell.com/documentation Configuring Google Cloud Messaging Service for Android Devices ZENworks Mobile Management 2.8.x November 2013 Legal Notices Novell, Inc., makes no representations or warranties

More information

Last Updated: FRC 2019 BETA

Last Updated: FRC 2019 BETA Last Updated: 08-01-2018 FRC 2019 BETA Table of Contents VS Code (C++/Java IDE)...3 Alpha Test Info...4 Installing VS Code...5 VS Code Basics and WPILib in VS Code... 15 Creating a new WPILib project in

More information

Agilent GeneSpring Software

Agilent GeneSpring Software Agilent GeneSpring Software Installation Guide Quick Start Installation of Agilent GeneSpring 3 Detailed Instructions for Installing Agilent GeneSpring 5 Managing Licenses 19 Upgrading Agilent GeneSpring

More information

Dell EMC OpenManage Mobile. Version User s Guide (Android)

Dell EMC OpenManage Mobile. Version User s Guide (Android) Dell EMC OpenManage Mobile Version 2.0.20 User s Guide (Android) Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE

MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE GUIDE APRIL 2019 PRINTED 17 APRIL 2019 MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE Table of Contents Overview Introduction Audience Getting Started with Android

More information

Presentation Outline 10/16/2016

Presentation Outline 10/16/2016 CPET 491 (Phase II) Fall Semester-2012 Adam O Haver Project Advisor/Instructor: Professor Paul Lin CEIT Department 1 Presentation Outline Executive Summary Introduction Solution Development Software Analysis

More information

ISEC7 Mobile Exchange Delegate

ISEC7 Mobile Exchange Delegate Android User Documentation 1 Create Master Account 4 2 Add Delegate Access 6 3 Add Shared Calendars 7 4 Synchronization 8 5 Managing Folders 9 5.1 Folders 9 5.2 Add Folder 10 6 Move Items 11 7 Categorize

More information

EGit/Gerrit Hands-on training #1: Installation and Configuration

EGit/Gerrit Hands-on training #1: Installation and Configuration EGit/Gerrit Hands-on training #1: Installation and Configuration Introduction To use git from Eclipse you need the EGit plug-in. With EGit you do nearly all of your gitrelated tasks. But for certain operations

More information

Open Mobile Platforms. EE 392I, Lecture-6 May 4 th, 2010

Open Mobile Platforms. EE 392I, Lecture-6 May 4 th, 2010 Open Mobile Platforms EE 392I, Lecture-6 May 4 th, 2010 Open Mobile Platforms The Android Initiative T-Mobile s ongoing focus on Android based devices in US and EU markets In Nov 2007, Google announced

More information

Introduction to TIZEN Ecosystem

Introduction to TIZEN Ecosystem Introduction to TIZEN Ecosystem Sungjin Lee Samsung Electronics TIZEN Ecosystem What is Ecosystem? Information Promotion Device Platform Content & Service Provider (Developer) Distribution Channel (App

More information

Intel Unite Solution Version 4.0

Intel Unite Solution Version 4.0 Intel Unite Solution Version 4.0 Cisco TelePresence* Application Guide Revision 1.0 October 2018 Document ID: XXX Legal Disclaimers and Copyrights This document contains information on products, services

More information

Installation Guide - Mac

Installation Guide - Mac Kony Visualizer Enterprise Installation Guide - Mac Release 7.0 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated

More information

Syllabus- Java + Android. Java Fundamentals

Syllabus- Java + Android. Java Fundamentals Introducing the Java Technology Syllabus- Java + Android Java Fundamentals Key features of the technology and the advantages of using Java Using an Integrated Development Environment (IDE) Introducing

More information

Installation Guide - Mac

Installation Guide - Mac Kony Visualizer Enterprise Installation Guide - Mac Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated

More information

Developing Ajax Web Apps with GWT. Session I

Developing Ajax Web Apps with GWT. Session I Developing Ajax Web Apps with GWT Session I Contents Introduction Traditional Web RIAs Emergence of Ajax Ajax ( GWT ) Google Web Toolkit Installing and Setting up GWT in Eclipse The Project Structure Running

More information

Oracle Mobile Application Framework Installing Oracle Mobile Application Framework

Oracle Mobile Application Framework Installing Oracle Mobile Application Framework Oracle Mobile Application Framework Installing Oracle Mobile Application Framework 2.5.0.0.0 E90396-02 January 2018 Oracle Mobile Application Framework Installing Oracle Mobile Application Framework, 2.5.0.0.0

More information

A Customizable Travel Application- Travel-It

A Customizable Travel Application- Travel-It A Customizable Travel Application- Travel-It GRADUATE PROJECT Submitted to the Faculty of the Department of Computing Sciences Texas A&M University-Corpus Christi Corpus Christi, Texas In Partial Fulfillment

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

Netwrix Auditor for SQL Server

Netwrix Auditor for SQL Server Netwrix Auditor for SQL Server Quick-Start Guide Version: 9.5 10/25/2017 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment from

More information

VST Hospital Administrator Guide. Version 2.0.4

VST Hospital Administrator Guide. Version 2.0.4 VST Hospital Administrator Guide Version 2.0.4 Notice Copyright 2002- Vocera Communications, Inc. All rights reserved. Vocera is a registered trademark of Vocera Communications, Inc. This software is licensed,

More information

Oracle Enterprise Pack

Oracle Enterprise Pack Oracle Enterprise Pack Installing Oracle Enterprise Pack 12c (12.2.1.6) E83407-02 June 2017 Documentation that describes how to install the Oracle Enterprise Pack for Eclipse. Oracle Enterprise Pack Installing

More information

Tegra 250 Development Kit Android Setup Experience

Tegra 250 Development Kit Android Setup Experience Tegra 250 Development Kit Android Setup Experience Version 20110301 February 2011-1 - Contents WELCOME TO TEGRA... 3 STEP 1: SETUP AND FLASH THE DEVKIT HARDWARE... 4 STEP 2: INSTALL THE JAVA DEVELOPMENT

More information

Symantec Validation and ID Protection. VIP Credential Development Kit Release Notes. Version January 2017

Symantec Validation and ID Protection. VIP Credential Development Kit Release Notes. Version January 2017 VIP Credential Development Kit Release Notes Version 2.0.7 January 2017 VIP Credential Development Kit Release Notes Page 1 of 6 Introduction This document includes important and late-breaking information

More information

Ahmed Ali Big fan of Android

Ahmed Ali Big fan of Android Ahmed Ali Big fan of Android Mobile Operating Systems What is your Mobile OS? What is your opinion about it? Why you are using it? Do you know any other OSs?? Mobile Operating Systems Click to edit Master

More information

TeamViewer 12 Manual Management Console. Rev

TeamViewer 12 Manual Management Console. Rev TeamViewer 12 Manual Management Console Rev 12.1-201704 TeamViewer GmbH Jahnstraße 30 D-73037 Göppingen www.teamviewer.com Table of content 1 About the TeamViewer Management Console 4 1.1 About the Management

More information

JavaFX. JavaFX Overview Release E

JavaFX. JavaFX Overview Release E JavaFX JavaFX Overview Release 2.2.21 E20479-06 April 2013 Learn about the JavaFX 2 and later technology, read a feature summary, explore the sample applications, and follow the high-level steps to create

More information