Mocean Android SDK Developer Guide
|
|
|
- Timothy Morris
- 10 years ago
- Views:
Transcription
1 Mocean Android SDK Developer Guide For Android SDK Version Baxter St, New York, NY Page 1
2 Table of Contents Table of Contents... 2 Overview... 3 Section 1 Setup... 3 What changed in 3.2:... 3 What changed in 3.1:... 3 Upgrading from 3.1:... 4 System requirements:... 4 SDK contents:... 4 Installation instructions:... 4 Section 2 - Getting Started with Development User Interface / Layout (Design) Creating a Banner Ad View Layout Based Ad View Creation Code Based Ad View Creation Displaying the Ad View Getting Initial Ad View Content Creating an Interstitial Ad View Handling Rotation Changes Detecting Ad Load Failures Where To Go Next Baxter St, New York, NY Page 2
3 Overview Mocean Mobile is unlike any other mobile ad serving platform available. Developed specifically for mobile devices, the Mocean Mobile Ad Serving Technology streamlines the many moving parts in mobile advertising for publishers, app stores, and networks. Mocean Mobile was built by mobile advertising experts so that the real opportunity of this exciting new media could be fully harnessed. The Mocean Android SDK makes it easy for developers to incorporate mobile ads into Android applications. Section 1 Setup What changed in 3.2: Issues Fixed: Issue related to improper scaling of webview has been fixed. Now webview is scaling properly as expected. New Feature: Introduced new method in class MASTAdView getadrequestcustomparameters() User can now append multiple values for the same custom parameter in the ad request. For instance: age=10&age15.we have added common- collections library to achieve this functionality. Now we have separate methods for adding default parameters and custom parameters as stated below. getadrequestparameters() - This method is used for adding default parameters in the request like size_x,size_y etc. getadrequestcustomparameters() - This method is used for adding custom network parameters defined by user, in the request. What changed in 3.1: The SDK has been reworked to closely match the interfaces for the ios and Windows Phone releases. The code base has also been refactored to provide simpler application integration and less resource usage. Image ads now render in native image views. Animated GIFs are decoded and rendered as native image frames. All add configuration is set with methods directly on MASTAdView (ex: setzone and getadrequestparameters). Callback interfaces have been updated and renamed. Interfaces are now set directly on MASTAdView instances. All public methods intended for SDK users now have javadoc documentation. HTML versions of this are included in the Documentation\javadoc folder of the SDK release, replacing the version formerly included in this document. Note: See the source README.txt document for latest build release notes. 136 Baxter St, New York, NY Page 3
4 Upgrading from 3.1: The 3.2 SDK has a new name space to avoid collisions. Upgrading is a matter of removing a reference to the or older JAR and importing the new 3.2 jar. In case if you encounter the exception: class definition not found for MultiValueMap, please add a reference to comman- collections jar file present in libs folder of MASTAdView. System requirements: Android SDK (API level 8, platform version 2.2 or later) Eclipse 3.7 or later 10 Mb free disk space SDK contents: Lib - SDK library files Sample - sample usage/test app Installation instructions: Installing Android SDK & Eclipse IDE with ADT Plugin Download and install Android SDK and the Eclipse Integrated Develop Environment (IDE) with the ADT Plug- in for Android development following the instructions at If you are not comfortable with Android development, we suggest you review the online Android developer documentation available at: Once SDK has been installed follow to the next step to install Android mocean SDK. Installing Android mocean SDK The SDK is distributed as a library source code project, but still includes a pre- compiled jar library. To add the SDK to a project, the developer must configure the project properties to indicate the location of SDK files, as well as the names of library dependencies. 1. Unpack the SDK zip file into a convenient location in your source code working area. 2. Open or create a new Android project in the Eclipse development environment. 3. Import the SDK project into your workspace as an existing Android project. a. Choose Import from the File menu, then Existing Android Code Into Workspace item under the Android heading, as show in Figure 1 below. 136 Baxter St, New York, NY Page 4
5 Figure Error! No sequence specified.- Import Existing Project b. Browse to the location where you unpacked the SDK file and import the com.moceanmobile.mast.mastadview project; you can also optionally import the Samples project if you want to work with the SDK sample application. See Figure 2 below for an example. Figure Error! No sequence specified. - Import SDK Project 136 Baxter St, New York, NY Page 5
6 c. Add the SDK project to your application project. Choose Properties from the Project menu, and then select the Java Build Path category followed by the Libraries tab, as shown in Figure 3 below. Figure Error! No sequence specified. - Add Library Jar d. Choose the Add Jar button, and then navigate into the bin folder of the MASTAdView project and choose the mastadview.jar Jar file as shown in Figure 4 below. 136 Baxter St, New York, NY Page 6
7 Figure Error! No sequence specified. - Ad SDK Jar File e. IMPORTANT: If using release 18 or later of the Android SDK tools, choose the Order and Export tab, and check the box to export the SDK Jar file as shown in Figure 5 below. Without this, applications will compile but the resulting apk file will not include the required SDK code and the app will crash at runtime due to missing symbols. 136 Baxter St, New York, NY Page 7
8 Figure 5 - Export SDK Jar File Updating the manifest file (AndroidManifest.xml) Add minsdkversion parameter in project manifest file (AndroidManifest.xml) Example: <uses- sdk android:minsdkversion="8" /> 136 Baxter St, New York, NY Page 8
9 Set the security permissions in your manifest file (AndroidManifest.xml). At a minimum you must add these permissions for the ad view to work: Permission INTERNET Network State Description & Manifest XML fragment Access the Internet. Required for ad content download. <uses-permission android:name="android.permission.internet"></uses-permission> Access the network state. Required for ad request parameter setting, and MRAID support. <uses-permission android:name="android.permission.access_network_state"></uses-permission> Depending on the ad content you display in your app, the following may also be needed: Permission Fine Location Phone State Read Calendar Write Calendar Call Phone Send SMS Description & Manifest XML fragment Use GPS to obtain location information. Needed if SDK enables location detection; off by default. <uses-permission android:name="android.permission.access_fine_location"></uses-permission> Read state of phone data connection. Required for ad request parameter setting. <uses-permission android:name="android.permission.read_phone_state"></uses-permission> Read calendar events. Needed if MRAID ad makes use of calendar features. <uses-permission android:name="android.permission.read_calendar"></uses-permission> Write calendar events. Needed if MRAID ad makes use of calendar features. <uses-permission android:name="android.permission.write_calendar"></uses-permission> Initiate a phone call. Needed if an ad makes use of the MRAID feature to place a phone call. <uses-permission android:name="android.permission.call_phone"></uses-permission> Send an SMS (text) message. Needed if an ad makes use of the MRAID feature to send a text message. <uses-permission android:name="android.permission.send_sms"></uses-permission> External Storage Access the SD card storage area. Required for debug logs, photo, and file access to support SDK logging and MRAID features. <uses-permission android:name="android.permission.write_external_storage"></uses-permission> 136 Baxter St, New York, NY Page 9
10 Section 2 - Getting Started with Development 1. User Interface / Layout (Design) The first step is deciding where you want to incorporate ads in your application. There are two basic ad types to consider: Banner ads, which are typically intermingled with ad content; banner ads usually span the screen width but occupy only a small part of the horizontal space. Interstitial ads, which are full screen ads frequently displayed when the app is launched, or when transitioning between screens or functions in the application. The simplest approach is to integrate a banner ad into the user- interface (UI). A typical form factor is a 50 pixel tall (perhaps 100 for high res devices), full width rectangle which does not crowd the existing UI elements or break the appearance and flow. As an example, consider the following Flickr image viewer before and after a banner ad has been inserted. We will show the steps to setup and display this ad below. Figure Original UI Figure UI with Top Banner Ad 2. Creating a Banner Ad View Once you know where you want to put an ad in your UI, the next step is to create the ad view. As is typical with any Android UI element, the ad view component can be added to your activity in one of two ways: dynamically by creating the view in code and adding it to a layout, or in an XML layout definition. Copyright 2011, 2012, 2013 Mocean Mobile. All Rights Reserved. 136 Baxter St, New York, NY Page 10
11 An example of creating a banner ad with each approach follows. Note that these examples show a small set of the ad view properties that developers can use to customize the appearance and behavior of the ad view. The full set is described in the SDK documentation, and since the ad view itself is an extended version of standard Android views, the full set of view properties are also available for use by the developer as needed. 2.1 Layout Based Ad View Creation Open the layout XML file for your activity and insert the com.mastadview.mastadview component into the XML view. An example of how this might look is as follows: 136 Baxter St, New York, NY Page 11
12 <! -- Main layout manager for this activity -- > <LinearLayout xmlns:android=" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="#000000"> <! -- Ad view component -- > <com.moceanmobile.mast.mastadview xmlns:android=" android:layout_width="fill_parent" android:layout_height="100px" android:layout_gravity="center_horizontal" zone="22222" (sample, see description below) android:visibility="visible" /> <! -- Any remaining layout -- > <! > Figure XML Ad Layout Here the MASTAdView component has been added as the first visible element inside a standard (vertical) LinearLayout manager (because we chose to display this as a banner ad at the top of the application UI area.) In addition to the standard view properties (such as the id) there are a variety of ad view properties (such as the zone) that can be configured in the XML layout, as described in the SDK documentation. This example shows a few of each, chosen for this sample application, including: View ID: this is important if you will be using code to manipulate this ad view later; this is a common practice and will be illustrated below. Layout Width: we have chosen to make this a full width banner ad, so the standard fill_parent attribute is used. Alternatively, a fixed pixel size could be specified. We do NOT recommend using the wrap_content attribute for your ad view. It is best to choose a size that will fit your UI needs to specify it here. Layout Height: we have chosen to use a fixed 100 pixel banner ad, so this specific size is used. The standard Android variations such as density independent pixels (dip) are generally advised when configuring a pixel size to aid with supporting multiple devices. We do NOT recommend using the wrap_content attribute for your ad view. It is best to choose a size that will fit your UI needs to specify it here. Ad zone: this is used to identify one specific ad placement in your application. In this example we have created one placement so far, the banner ad to be displayed at the top of the screen. If we choose to display ads in another part of this application, a different placement will be used for that location. Zones are provided by your Mocean account representative, or created through the Motion Mobile UI, and target content to ad placements in your application. A given zone falls under one site. The zone is required in order to request an ad. These same parameters can be set (or updated) in code. Consult the documentation distributed with the SDK for more information about the full range of configurable parameters and options. 136 Baxter St, New York, NY Page 12
13 2.2 Code Based Ad View Creation In the java code for your activity, first be sure to import our object definitions into your java class with the statement: import com.mastadview.mastadview; Then use code such as the following to create and setup a MASTAdView component: // Construct view and set the zone registered with mocean mobile ui int myadzone = 22222; // sample, see description above MASTAdView adview = new MASTAdView(this); // Set the zone adview.setzone(myadzone); // Set update interval adview. setupdateinterval (60); // Set layout: full width of screen, 100 pixels tall ViewGroup.LayoutParams layoutparams = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, 100)); // Add this view to the application UI activity LinearLayout linearlayout = (LinearLayout)findViewById(R.id.frameAdContent); linearlaout.addview(adview, layoutparams); Figure Code Ad View The code above sets similar properties to those previously shown in the XML layout, notably: The zone is configured. The update time is set to the same 60 second interval. The view layout parameters are set to the same values: the full width of the screen, and 100 pixels tall Displaying the Ad View Once the ad view has been create and configured, it has to be add to the activity layout in the appropriate spot. In this example, a LinearLayout manager named frameadcontent exists in the overall layout definition for this activity, placed where we want the ad to appear. This makes placing the ad a simple process of finding the named layout manager and adding our newly created ad view object to it. 3. Getting Initial Ad View Content Once the ad view has been setup, the initial ad needs to be fetched for display to the user. If you used the XML layout option, the initial fetch is automatic. If you created the view with code, invoke the update() method on it, as shown below: // Update view to fetch first ad adview.update(); Figure Fetch Initial Ad Content From this point on, operation is identical whether the XML or code approach was used to create the ad view component. In particular, the update() method can be invoked to download the initial ad content. 136 Baxter St, New York, NY Page 13
14 The SDK itself does the rest of the work, including spawning threads to download ad content from the network without slowing down the UI, etc. The adserverview object can also be used to customize and manage other properties and behaviors as described in the SDK documentation. After the initial ad content is displayed, you can continue to invoke the update() method manually to refresh the ad content when desired; however, if you have defined a refresh interval as shown in the samples above, this is not necessary. The SDK sets a timer and will automatically download updated ad content for you based on the timer setting. 4. Creating an Interstitial Ad View Interstitial ads are full screen ads displayed at transition points in the application (for example when the app is launched, or when moving between screens, etc.) Interstitial ads always include a close button, and optionally can be configured to close automatically after some time has elapsed. Unlike banner ads, you do not need to add an interstitial view to a layout. Instead, you use the custom ad view showinterstitial() method, and the ad will pop up in front of your activity screens until dismissed. Because they don t appear in layouts or need to be added to managers, you create interstitial ads in code exclusively, not with an XML definition as shown for banner ads above. An example of creating and displaying an interstitial ad in Java is shown below: 136 Baxter St, New York, NY Page 14
15 // Construct view using site and zone registered with mocean mobile ui int myinterstitialzone = 33333; // sample, see description above boolean isinterstitial = true; MASTAdView interstitialview = new MASTAdView(this, isinterstitial); // Set the zone interstitialview.setzone(myinterstitialzone); // Update view to fetch first ad interstitialview.update(); // Show ad; will pop up in front of app screens interstitialview.showinterstitial(); Figure 4.1 Interstitial Ad Display And visually, here is what the user might actually see when the ad is displayed: Figure Interstitial Ad Note that the basics of creating an interstitial ad view are the same as for a banner ad. There are two significant differences: The interstitial is presented as a full screen dialog. The showinterstitial() method is used to display the ad instead of adding the view to a manager along with other content on screen as seen in the banner example above. 136 Baxter St, New York, NY Page 15
16 Note that this examples show a small set of the properties that developers can use to customize the appearance and behavior of the ad view. The full set is described in the SDK documentation. 5. Handling Rotation Changes By default, when certain configuration changes (such as screen orientation and/or physical keyboard availability) occur, Android restarts the current activity (by invoking the ondestroy() and then oncreate() methods.) This will typically cause a full reload of all resources, and a refresh of screen content, including the ad view. Sometimes this complete restart is not desired, and application developers override the default behavior so that only those resources which actually need to be reloaded do so. Consult the Android developer documentation for more information about the general approach to handling configuration changes; this specific topic is addressed here: changes.html. Depending on your UI layout, it is common for the ad view to be one of the elements which SHOULD be reloaded after a screen orientation change (and/or the related physical keyboard change as well.) For example, using our sample layout from section 3 above, the banner ad is mean to use the full width of the screen. After the screen rotates, it is desirable to request a new ad that will better fit into the available space can be displayed (for example, if the ad started off in 480x800 vertical orientation, and then rotates, the width is now 800 and the server might have an ad available that is better suited for this display size.) An example of an app showing different ads in portrait and landscape view is shown in the figures below. The following value is recommended for the activity tag configchanges attribute in the manifest for activities that will contain MASTAdView instances: keyboardhidden orientation screensize 136 Baxter St, New York, NY Page 16
17 Figure Landscape Ad, Full Width, 100 tall Figure Portrait Ad, Full Width, 100 tall If you have followed the Android developer documentation referenced above, you will have added a configchanges property to the activity definition in your project manifest, and implemented the onconfigurationchanged() method in your java activity source code. See the Samples/OrientationSamples project for the means to detect the orientation ad and automatically update the MASTAdView instance after it s layout is complete so the ad request size matches the new orientation layout size. 6. Detecting Ad Load Failures Sometimes a developer might want to take a special action if no ad is available that satisfies the current constraints sent to the mobile ad server. This might occur if a particular ad type or minimum size was requested, and no matching ad is available. This could also happen if all ads scheduled for the requested zone have reach the maximum daily or monthly cap. The SDK includes an optional MASTAdViewDelegate.RequestListener interface which applications can implement to receive notifications when download related ad events occur. This interface includes four methods as follows: onreceivedad () which is invoked when the ad content is inserted into a view for display. onfailedtoreceivead () which is invoked if downloading ad content fails for any reason. The onfailedtoreceivead () method will be invoked if no ad is received from the ad server. An example implementation of this interface which shows how to detect this condition is as follows: Copyright 2011, 2012, 2013 Mocean Mobile. All Rights Reserved. 136 Baxter St, New York, NY Page 17
18 adview.setrequestlistener(new MASTAdViewDelegate.RequestListener() public void onfailedtoreceivead(final MASTAdView adview, Exception ex) { runonuithread(new Runnable() public void run() { adview.setvisibility(view.gone); } }); } // other listener methods here }); Figure 6.1 Detecting no ad available 136 Baxter St, New York, NY Page 18
19 7. Where To Go Next You will find more thorough, complex examples and additional use cases in the sample application and documentation distributed with the SDK. Both the sample app and the SDK itself are available in source code form from: sdk- android/. You can also find additional documentation, information, and other supported platforms on our developer wiki at: Baxter St, New York, NY Page 19
PubMatic Android SDK. Developer Guide. For Android SDK Version 4.3.5
PubMatic Android SDK Developer Guide For Android SDK Version 4.3.5 Nov 25, 2015 1 2015 PubMatic Inc. All rights reserved. Copyright herein is expressly protected at common law, statute, and under various
Login with Amazon Getting Started Guide for Android. Version 2.0
Getting Started Guide for Android Version 2.0 Login with Amazon: Getting Started Guide for Android Copyright 2016 Amazon.com, Inc., or its affiliates. All rights reserved. Amazon and the Amazon logo are
AdFalcon Android SDK 2.1.4 Developer's Guide. AdFalcon Mobile Ad Network Product of Noqoush Mobile Media Group
AdFalcon Android SDK 214 Developer's Guide AdFalcon Mobile Ad Network Product of Noqoush Mobile Media Group Table of Contents 1 Introduction 3 Supported Android version 3 2 Project Configurations 4 Step
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
Mobile Application Development
Mobile Application Development (Android & ios) Tutorial Emirates Skills 2015 3/26/2015 1 What is Android? An open source Linux-based operating system intended for mobile computing platforms Includes a
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
Self Testing with MoPub SDK
Self Testing with MoPub SDK What: SimpleAds Demo is an iphone and Android application that displays the three basic type of ads offered through MoPub Banner (320x50), MRect (300x200), and Interstitial
ADITION Android Ad SDK Integration Guide for App Developers
Documentation Version 0.5 ADITION Android Ad SDK Integration Guide for App Developers SDK Version 1 as of 2013 01 04 Copyright 2012 ADITION technologies AG. All rights reserved. 1/7 Table of Contents 1.
How to develop your own app
How to develop your own app It s important that everything on the hardware side and also on the software side of our Android-to-serial converter should be as simple as possible. We have the advantage that
IOIO for Android Beginners Guide Introduction
IOIO for Android Beginners Guide Introduction This is the beginners guide for the IOIO for Android board and is intended for users that have never written an Android app. The goal of this tutorial is to
Tutorial: Android Object API Application Development. Sybase Unwired Platform 2.2 SP02
Tutorial: Android Object API Application Development Sybase Unwired Platform 2.2 SP02 DOCUMENT ID: DC01734-01-0222-01 LAST REVISED: January 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This
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
Chapter 2 Getting Started
Welcome to Android Chapter 2 Getting Started Android SDK contains: API Libraries Developer Tools Documentation Sample Code Best development environment is Eclipse with the Android Developer Tool (ADT)
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: [email protected] Facebook: http://www.facebook.com/peterlo111
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
Developing NFC Applications on the Android Platform. The Definitive Resource
Developing NFC Applications on the Android Platform The Definitive Resource Part 1 By Kyle Lampert Introduction This guide will use examples from Mac OS X, but the steps are easily adaptable for modern
060010702 Mobile Application Development 2014
Que 1: Short question answer. Unit 1: Introduction to Android and Development tools 1. What kind of tool is used to simulate Android application? 2. Can we use C++ language for Android application development?
Jordan Jozwiak November 13, 2011
Jordan Jozwiak November 13, 2011 Agenda Why Android? Application framework Getting started UI and widgets Application distribution External libraries Demo Why Android? Why Android? Open source That means
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:
Overview. About Interstitial Ads: About Banner Ads: About Offer-Wall Ads: ADAttract Account & ID
Overview About Interstitial Ads: Interstitial ads are full screen ads that cover the interface of their host app. They are generally displayed at usual transformation points in the flow of an app, such
Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 SP02
Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01939-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication
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)
Android Application Development
Android Application Development Self Study Self Study Guide Content: Course Prerequisite Course Content Android SDK Lab Installation Guide Start Training Be Certified Exam sample Course Prerequisite The
Android Application Development: Hands- On. Dr. Jogesh K. Muppala [email protected]
Android Application Development: Hands- On Dr. Jogesh K. Muppala [email protected] Wi-Fi Access Wi-Fi Access Account Name: aadc201312 2 The Android Wave! 3 Hello, Android! Configure the Android SDK SDK
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
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
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
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
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
directory to "d:\myproject\android". Hereafter, I shall denote the android installed directory as
1 of 6 2011-03-01 12:16 AM yet another insignificant programming notes... HOME Android SDK 2.2 How to Install and Get Started Introduction Android is a mobile operating system developed by Google, which
Android Development. Marc Mc Loughlin
Android Development Marc Mc Loughlin Android Development Android Developer Website:h:p://developer.android.com/ Dev Guide Reference Resources Video / Blog SeCng up the SDK h:p://developer.android.com/sdk/
Advertiser Campaign SDK Your How-to Guide
Advertiser Campaign SDK Your How-to Guide Using Leadbolt Advertiser Campaign SDK with Android Apps Version: Adv2.03 Copyright 2012 Leadbolt All rights reserved Disclaimer This document is provided as-is.
KomliMobile Android SDK
KomliMobile Android SDK Overview Komlimobile Ad banner use a small portion of the screen to entice users to "click through" to a richer, full-screen experience such as a website or app store page. To display
Advantages. manage port forwarding, set breakpoints, and view thread and process information directly
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
Programming with Android: SDK install and initial setup. Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna
Programming with Android: SDK install and initial setup Luca Bedogni Marco Di Felice Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna SDK and initial setup: Outline Ø Today: How
Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04
Tutorial: BlackBerry Object API Application Development Sybase Unwired Platform 2.2 SP04 DOCUMENT ID: DC01214-01-0224-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This
Android Development Setup [Revision Date: 02/16/11]
Android Development Setup [Revision Date: 02/16/11] 0. Java : Go to the URL below to access the Java SE Download page: http://www.oracle.com/technetwork/java/javase/downloads/index.html Select Java Platform,
TUTORIALS AND QUIZ ANDROID APPLICATION SANDEEP REDDY PAKKER. B. Tech in Aurora's Engineering College, 2013 A REPORT
TUTORIALS AND QUIZ ANDROID APPLICATION by SANDEEP REDDY PAKKER B. Tech in Aurora's Engineering College, 2013 A REPORT submitted in partial fulfillment of the requirements for the degree MASTER OF SCIENCE
Building an Android client. Rohit Nayak Talentica Software
Building an Android client Rohit Nayak Talentica Software Agenda iphone and the Mobile App Explosion How mobile apps differ Android philosophy Development Platform Core Android Concepts App Demo App Dissection
Developing Android Apps: Part 1
: Part 1 [email protected] www.dre.vanderbilt.edu/~schmidt Institute for Software Integrated Systems Vanderbilt University Nashville, Tennessee, USA CS 282 Principles of Operating Systems II Systems
Arduino & Android. A How to on interfacing these two devices. Bryant Tram
Arduino & Android A How to on interfacing these two devices Bryant Tram Contents 1 Overview... 2 2 Other Readings... 2 1. Android Debug Bridge -... 2 2. MicroBridge... 2 3. YouTube tutorial video series
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
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
Introduction to Android Programming (CS5248 Fall 2015)
Introduction to Android Programming (CS5248 Fall 2015) Aditya Kulkarni ([email protected]) August 26, 2015 *Based on slides from Paresh Mayami (Google Inc.) Contents Introduction Android
Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0
Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway
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
Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows
Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Microsoft Windows Updated September, 2013 This document will describe how to download and install the Android
How To Create A Bada App On Android 2.2.2 (Mainfest) On Android 3.5.2 And Get A Download Of Bada (For Android) On A Microsoft Gosu 2.5 (For Black
I. bada... 3 1. Developer Site : Register application development information... 3 1) Registration procedure... 3 2) Standards for managing mainfest.xml depending on status of registration for bada application
SDK Quick Start Guide
SDK Quick Start Guide Table of Contents Requirements...3 Project Setup...3 Using the Low Level API...9 SCCoreFacade...9 SCEventListenerFacade...10 Examples...10 Call functionality...10 Messaging functionality...10
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
Android Programming. Høgskolen i Telemark Telemark University College. Cuong Nguyen, 2013.06.18
Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Cuong Nguyen, 2013.06.18 Faculty of Technology, Postboks 203, Kjølnes ring
Introduction to NaviGenie SDK Client API for Android
Introduction to NaviGenie SDK Client API for Android Overview 3 Data access solutions. 3 Use your own data in a highly optimized form 3 Hardware acceleration support.. 3 Package contents.. 4 Libraries.
Running a Program on an AVD
Running a Program on an AVD Now that you have a project that builds an application, and an AVD with a system image compatible with the application s build target and API level requirements, you can run
How To Develop An Android App On An Android Device
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 Googleand used according to terms described
Android For Java Developers. Marko Gargenta Marakana
Android For Java Developers Marko Gargenta Marakana Agenda Android History Android and Java Android SDK Hello World! Main Building Blocks Debugging Summary History 2005 Google buys Android, Inc. Work on
Sabre Red Apps. Developer Toolkit Overview. October 2014
Sabre Red Apps Developer Toolkit Overview October 2014 Red Apps are optional, authorized applications that extend the capabilities of Sabre Red Workspace. Red Apps are Sabre's branded version of an Eclipse
Microsoft Tag Scanning SDK for iphone & Android Apps
Microsoft Tag Scanning SDK for iphone & Android Apps This document provides an overview of the functionality of the Microsoft Tag Scanning SDK, used to integrate Tag scanning into mobile apps on the ios
Getting Started with Android Development
Getting Started with Android Development By Steven Castellucci (v1.1, January 2015) You don't always need to be in the PRISM lab to work on your 4443 assignments. Working on your own computer is convenient
Tutorial on Basic Android Setup
Tutorial on Basic Android Setup EE368/CS232 Digital Image Processing, Spring 2015 Windows Version Introduction In this tutorial, we will learn how to set up the Android software development environment
HTTPS hg clone https://bitbucket.org/dsegna/device plugin library SSH hg clone ssh://[email protected]/dsegna/device plugin library
Contents Introduction... 2 Native Android Library... 2 Development Tools... 2 Downloading the Application... 3 Building the Application... 3 A&D... 4 Polytel... 6 Bluetooth Commands... 8 Fitbit and Withings...
OpenCV on Android Platforms
OpenCV on Android Platforms Marco Moltisanti Image Processing Lab http://iplab.dmi.unict.it [email protected] http://www.dmi.unict.it/~moltisanti Outline Intro System setup Write and build an Android
Generate Android App
Generate Android App This paper describes how someone with no programming experience can generate an Android application in minutes without writing any code. The application, also called an APK file can
Operational Decision Manager Worklight Integration
Copyright IBM Corporation 2013 All rights reserved IBM Operational Decision Manager V8.5 Lab exercise Operational Decision Manager Worklight Integration Integrate dynamic business rules into a Worklight
l What is Android? l Getting Started l The Emulator l Hello World l ADB l Text to Speech l Other APIs (camera, bitmap, etc)
today l What is Android? l Getting Started l The Emulator l Hello World l ADB l Text to Speech l Other APIs (camera, bitmap, etc) l Other: Signing Apps, SVN l Discussion and Questions introduction to android
IAB Full page flex Mobile Rising Star Ad Unit
IAB Full page flex Mobile Rising Star Ad Unit Style Guide and Tech Specs Created By IAB Full Page Flex Ad Unit - Style Guide and Tech Specs. V3 January 2013 0 I. Description The IAB Full page flex Ad Unit
Android: Setup Hello, World: Android Edition. due by noon ET on Wed 2/22. Ingredients.
Android: Setup Hello, World: Android Edition due by noon ET on Wed 2/22 Ingredients. Android Development Tools Plugin for Eclipse Android Software Development Kit Eclipse Java Help. Help is available throughout
Fahim Uddin http://fahim.cooperativecorner.com [email protected]. 1. Java SDK
PREPARING YOUR MACHINES WITH NECESSARY TOOLS FOR ANDROID DEVELOPMENT SEPTEMBER, 2012 Fahim Uddin http://fahim.cooperativecorner.com [email protected] Android SDK makes use of the Java SE
Developer's Cookbook. Building Applications with. The Android. the Android SDK. A Addison-Wesley. James Steele Nelson To
The Android Developer's Cookbook Building Applications with the Android SDK James Steele Nelson To A Addison-Wesley Upper Saddle River, NJ Boston «Indianapolis San Francisco New York Toronto Montreal London
Beginning Android Programming
Beginning Android Programming DEVELOP AND DESIGN Kevin Grant and Chris Haseman PEACHPIT PRESS WWW.PEACHPIT.COM C Introduction Welcome to Android xii xiv CHAPTER 1 GETTING STARTED WITH ANDROID 2 Exploring
STANDARD BANNER: Ad Specs
3 Ad Specs 1 Ad Specs STANDARD BANNER: Ad Specs Dimensions Max LOAD Size Devices Operating System Feature Various OS Blackberry Android ios Kindlefire Windows 120x20 168x28 216x36 * 300x50; 600x100 320x48;
Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development.
Android Development 101 Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development. Activity In Android, each application (and perhaps each screen
ECWM511 MOBILE APPLICATION DEVELOPMENT Lecture 1: Introduction to Android
Why Android? ECWM511 MOBILE APPLICATION DEVELOPMENT Lecture 1: Introduction to Android Dr Dimitris C. Dracopoulos A truly open, free development platform based on Linux and open source A component-based
Android Developer Fundamental 1
Android Developer Fundamental 1 I. Why Learn Android? Technology for life. Deep interaction with our daily life. Mobile, Simple & Practical. Biggest user base (see statistics) Open Source, Control & Flexibility
Android Basic XML Layouts
Android Basic XML Layouts Notes are based on: The Busy Coder's Guide to Android Development by Mark L. Murphy Copyright 2008-2009 CommonsWare, LLC. ISBN: 978-0-9816780-0-9 & Android Developers http://developer.android.com/index.html
MMI 2: Mobile Human- Computer Interaction Android
MMI 2: Mobile Human- Computer Interaction Android Prof. Dr. [email protected] Mobile Interaction Lab, LMU München Android Software Stack Applications Java SDK Activities Views Resources Animation
Android Programming: Installation, Setup, and Getting Started
2012 Marty Hall Android Programming: Installation, Setup, and Getting Started Originals of Slides and Source Code for Examples: http://www.coreservlets.com/android-tutorial/ Customized Java EE Training:
Homework 9 Android App for Weather Forecast
1. Objectives Homework 9 Android App for Weather Forecast Become familiar with Android Studio, Android App development and Facebook SDK for Android. Build a good-looking Android app using the Android SDK.
Eclipse installation, configuration and operation
Eclipse installation, configuration and operation This document aims to walk through the procedures to setup eclipse on different platforms for java programming and to load in the course libraries for
GearVRf Developer Guide
GearVRf Developer Guide Welcome to GearVRf development! The Gear VR Framework (GearVRf) allows you, the Android developer, to write your own stereoscopic 3D virtual reality Java applications for the Samsung
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
SDK Code Examples Version 2.4.2
Version 2.4.2 This edition of SDK Code Examples refers to version 2.4.2 of. This document created or updated on February 27, 2014. Please send your comments and suggestions to: Black Duck Software, Incorporated
Introduction to Android Development
2013 Introduction to Android Development Keshav Bahadoor An basic guide to setting up and building native Android applications Science Technology Workshop & Exposition University of Nigeria, Nsukka Keshav
Android 多 核 心 嵌 入 式 多 媒 體 系 統 設 計 與 實 作
Android 多 核 心 嵌 入 式 多 媒 體 系 統 設 計 與 實 作 Android Application Development 賴 槿 峰 (Chin-Feng Lai) Assistant Professor, institute of CSIE, National Ilan University Nov. 10 th 2011 2011 MMN Lab. All Rights Reserved
Getting Started with Android Programming (5 days) with Android 4.3 Jelly Bean
Getting Started with Android Programming (5 days) with Android 4.3 Jelly Bean Course Description Getting Started with Android Programming is designed to give students a strong foundation to develop apps
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
Android Java Live and In Action
Android Java Live and In Action Norman McEntire Founder, Servin Corp UCSD Extension Instructor [email protected] Copyright (c) 2013 Servin Corp 1 Opening Remarks Welcome! Thank you! My promise
Graduate presentation for CSCI 5448. By Janakiram Vantipalli ( [email protected] )
Graduate presentation for CSCI 5448 By Janakiram Vantipalli ( [email protected] ) Content What is Android?? Versions and statistics Android Architecture Application Components Inter Application
Crystal Reports for Eclipse
Crystal Reports for Eclipse Table of Contents 1 Creating a Crystal Reports Web Application...2 2 Designing a Report off the Xtreme Embedded Derby Database... 11 3 Running a Crystal Reports Web Application...
Department of Veterans Affairs. Open Source Electronic Health Record Services
Department of Veterans Affairs Open Source Electronic Health Record Services MTools Installation and Usage Guide Version 1.0 June 2013 Contract: VA118-12-C-0056 Table of Contents 1. Installation... 3 1.1.
Download and Installation Instructions. Android SDK and Android Development Tools (ADT)
Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Mac OS X Updated October, 2012 This document will describe how to download and install the Android SDK and
Introduction to Android. CSG250 Wireless Networks Fall, 2008
Introduction to Android CSG250 Wireless Networks Fall, 2008 Outline Overview of Android Programming basics Tools & Tricks An example Q&A Android Overview Advanced operating system Complete software stack
Sitecore InDesign Connector 1.1
Sitecore Adaptive Print Studio Sitecore InDesign Connector 1.1 - User Manual, October 2, 2012 Sitecore InDesign Connector 1.1 User Manual Creating InDesign Documents with Sitecore CMS User Manual Page
Backend as a Service
Backend as a Service Apinauten GmbH Hainstraße 4 04109 Leipzig 1 Backend as a Service Applications are equipped with a frontend and a backend. Programming and administrating these is challenging. As the
Specialized Android APP Development Program with Java (SAADPJ) Duration 2 months
Specialized Android APP Development Program with Java (SAADPJ) Duration 2 months Our program is a practical knowledge oriented program aimed at making innovative and attractive applications for mobile
Android Basics. Xin Yang 2016-05-06
Android Basics Xin Yang 2016-05-06 1 Outline of Lectures Lecture 1 (45mins) Android Basics Programming environment Components of an Android app Activity, lifecycle, intent Android anatomy Lecture 2 (45mins)
How To Use Titanium Studio
Crossplatform Programming Lecture 3 Introduction to Titanium http://dsg.ce.unipr.it/ http://dsg.ce.unipr.it/?q=node/37 [email protected] 2015 Parma Outline Introduction Installation and Configuration
Mobile Client SDK for Android Developer's Guide
Mobile Client SDK for Android Developer's Guide Release Number 2.5.8.6 Published: 1/8/2013 6:28 PM Gracenote, Inc. 2000 Powell Street, Suite 1500 Emeryville, California 94608-1804 www.gracenote.com Getting
