MediaQ. Figure 1 MediaQ Home Screen

Size: px
Start display at page:

Download "MediaQ. Figure 1 MediaQ Home Screen"

Transcription

1 MediaQ 1 Introduction MediaQ is an online media management framework that provide services to collect, organize and share user-generated mobile videos/images with automatically tagged geo-spatial metadata. It could be used in disaster response situation such as earthquake or fire place. The government and any helping association unit can get the first in-place look to help make the accurate decision. Considering the broadcast of network in crowded place, after user generates video/photo, MediaQ always upload the small-size metadata first which contain capture time, camera location, trajectory and viewing direction. Then as anyone interested in that video/photo, we use Google Cloud Message to manage the content query from other user and send notification to the content owner. Therefore, the goal of our final project is to develop such feature together with photography uploading in Android phones. Figure 1 MediaQ Home Screen

2 2 Basic Functions 2.1 Record a video and take a picture Users can record a video and take a picture like other camera app. While doing it, our app saves the metadata such as GPS, Compass data, Internet information and device information in the background side. Figure 2. Screen shot of camera 2.2 Automatic metadata uploading When users create content by recording a video or taking a picture, metadata associated with it is automatically uploaded to the server. Content itself is only uploaded when user triggers it to avoid unwanted network/data usage for uploading large files (metadata file size is very small, at most a few kbs). We stored the device id, user Id, and location information and so on to both show video or photo icons in the MediaQ website and identify the file holder later on. 2.3 Upload videos and pictures When users push the upload button, the picture and video contents are uploaded to the server including their metadata. 2.4 View Tranjectory While recording a video and taking a picture, our app saves the path described by an android device moving by using GPS information. Users can see the path on google maps. 2.5 Tasks Inquiries and Pending Tasks Users can ask some tasks to the server. The server can receive the user s requests and give some tasks like quests to users. After receiving the tasks, user can upload the videos and pictures taken from the specific place which the server gave.

3 2.6 Push notifications Since metadata is automatically uploaded, server knows where users recorded videos/photos, even if they didn t upload the content. The server can send out push notifications to the clients to request that they upload specific media. 2.7 Minor functions Users can view list of recorded videos, change the mood, preview the videos, see where they were taken, upload them, delete them, view the trajectory on google maps, and etc, Figure 3. Pending Tasks Figure 4. Video preview/upload/delete

4 3 Details 3.1 Overall Application Figure 5. MediaQ Architecture There are three partition of this overall system shown in Figure 5. Android application, GCM server and data server. Android application upload metadata to data server and also communicate with GCM server. A notification sent by GCM server notice user to upload the recorded video/photo content. For more specific, the MediaQ application not only upload the metadata, the client also register their device ID on server. Then the server keep track all client's ID and use it to distinguish each device. So when user want to participate with video which is not uploaded yet, the server is able to sent the notification to the content owner through Google cloud message, asking them upload the real data.

5 3.2 Analyzing a Json file ( The data sending to the server ) { "format_version": "0.4", "video_id": "1lwpl9ky2c21o_2016_3_23_Videotake_ mp4", "owner_properties": { "tid_type": " ", "id": "geovideo@example.com" }, "device_properties": { "SIM_id": "1lwpl9ky2c21o", "OS": "android", "OS_version": "5.0", "firmware_version": "5.0", "model_name": "SM-N900K", "camera_direction": 180 }, "UploadType": "request", "TaskId": " c e", "TaskInquiryId": "f001dd75-49ec-4b", "TaskLat": "null", "TaskLong": "null", "UserId": "2832bc0e-cfc8-48", "Username": "user190", "TaskType": "video", "keywords": [ ], "LocationType": "outdoor", "LevelOfVideoPrivacy": "Public", "Mood": 2, "UploadDate": "03/23/2016/08:13:07/PM/UTC-07:00", "RecordDate": "03/23/2016/08:12:59/PM/UTC-07:00", "sensor_data": [ { "location_array_timestamp_lat_long_accuracy": [ // request: task inquiries, personal: personal upload // GPS data [ , 03/23/2016/08:12:59/PM/UTC-07:00, , , , 0.0], [ , 03/23/2016/08:12:59/PM/UTC-07:00, , , 17.08, ] ] }, { "sensor_array_timestamp_x_y_z": [ // Compass data [ ,03/23/2016/08:12:59/PM/UTC-07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0], [ ,03/23/2016/08:13:00/PM/UTC-07:00, , , , , , , ,92.8,-121.7,-30.7, , , ], [ ,03/23/2016/08:13:00/PM/UTC-07:00, , , , , , , ,92.8,-121.1,-31.4, , , ], [ ,03/23/2016/08:13:00/PM/UTC-07:00, , , , , , , ,92.8,-119.9,-31.4, , , ] ] },{ "wifi_array_timestamp_bssid_level_frequency": [ [ ,"00:24:6c:b4:1e:19",-58,"5745"] ] } ] }

6 3.2.1 Location_array_timestamp_lat_long_accruacy (1) Timestamp (2) Recording date (3) Latitude (4) Longitude (5) Altitude (6) Accuracy Sensor_array_timestamp_x_y_z (1) Timestamp (2) Recording date (3) Orientation z (manipulated azimuth) (4) Orientation x (manipulated pitch) (5) Orientation y (manipulated roll) (6) Light (7) Accelerometer x (8) Accelerometer y (9) Accelerometer z (10) MagneticField x (11) MagneticField y (12) MagneticField z (13) Gyroscope x (14) Gyroscope y (15) Gyroscope z 3.3 Push notifications to request uploading of media contents Figure 6. flow of getting GCM Registration ID

7 To identify each intent, we retrieve GCM registration ID by communicate with GCM server as Figure 6 shown. In the beginning we get the google API key at Google Developers Console. With the API key, MediaQ application communicate with google cloud message and get Registration ID. Finally, the client share RegID with server and post notification to GCM. 4 The role of files 4.1 Server upload [_pictures].php Our application support both picture and video recording and uploading. After received notification from GCM, we deployed this API to upload the video/photo content to MediaQ Database server. uploadstatus [_picture].php To ensure we know the file content or metadata is correctly stored in the server, especially all the metadata is uploaded successfully on the server, we request the file status through uploadstatus[_picture].php and it returns us both the metadata length, and content length of the requested file. If both length matches the local file lengths, we marked this file as completed in the client application. Otherwise, if the metadata size is less the local file, we uploaded metadata. This is a service to help client applications know the file status in the server, and client will try to upload metadata whenever it can when server does not acquire the metadata because of some interruption of internet or server breakdown at the moment that user just takes videos or photos. GCMDeviceRegistration.php On the data server, there are not only stored media content and metadata, but also server services run on it. One of these is GCM device registration. For every intent, Google will assign a unique ID which is depends on the Application. In this php process, we collect any identical information from device, user and registration ID getting from google server and produce them to store on MediaQ server for later GCM notification usage. 4.2 Client (Android) DashboardActivity First screen shown as Figure 7 is the page user sees after logging in. In this page, user can access Task Inquiries, Pending Tasks and videos/photos collection. While this page load, it immediately retrieves registration token from GCM server and sending device token to MediaQ data server, to register for push notifications service.

8 Figure 7. Dashboard page GeoVidDashboardActivity As Figure 8 shown, the dashboard support user to access that content record page and navigates to list of videos/photos. This dashboard is also automatically switched to right after user just taken a video/photos. More specific, the video taken content also contain the trajectory and the direction of camera. So it s geo-spatial media content.

9 Figure 8. Data Collection including Video and Photo GeoVidActivity This is the activity that show a list of video/photo contents. It displays a list of contents, each with its information, screenshot picture, taken date and time and the upload status. Each element connects to its video/photo. When a user selects an item, that correspond video/photo is ready for uploading by one click on it and choose upload. GeoVidDialog This dialog menu activity will be shown when user selects one of videos/photos in GeoVidActivity. GeoVidActivity retrieve the content id and popup an dialog. From here, user can upload, change mood, preview, etc.

10 Figure 9. Dialog to make change of any video in the list GeoRecorderActivity This activity allows the user to take a picture for a new video/photo content. It utilizes the Android phone s camera to take a picture or video and saves it onto the photo s local storage prior to sending the metadata to the MediaQ data server. After finishing, the activity flow return to GeoVidActivity. GeoVideo This service Encapsulates the Android Camera APIs, and the recording of metadata (GPS, sensors) along with recording video. After the the video/photo taken, the metadata will be produced and will be upload to MediaQ database server after it by calling UploadService. UploadService This service is used to upload metadata and/or content to the server. In our application the metadata is immediately upload after the video/photo content has been taken and the content will be asked to upload when the user is notified by an inquiry and upload the video/photo content. And these uploading process is served with this activity. We upload files chuck by

11 chuck, for each chuck, the UploadService retries at maximal 10 times to avoid some sudden internet interruption stopping uploading. MetadataTimedUploadService This service is used to try uploading metadata for files which haven t had metadata uploaded yet. In case of failure, retries after 2 minutes, for a maximum of 10 times. GcmBroadcastReceiver This service is used to receive GCM messages (i.e. push notifications from server). Launches GcmMessageHandler. The application periodically subscribes the GCM server to check if any new inquiry has been sent which the subject content owner is the self device. If the server responds with new video/photo content inquiry and this device and user is the content owner, the user will be notified via Google cloud messaging and the notification will inform the detail information of the desire video/photo content, file name as helping user to upload assigned content. GcmMessageHandler Handles GCM messages by showing notification in the system notification bar with the message that was received from the server. If the server responds with new video/photo content inquiry and this device and user is the content owner, there will be an message shown at notification bar and clearly inform the asked file to be upload. Figure 10. Receive GCM Notification

12 5 Class diagram Figure 11. The flow of process

13 6 Future works 6.1 GCM notification For now, the GCM notification only show which file is requested to upload. In the future, it might directly link to the uploading activity of specific file for user to upload the file. 6.2 GeoRecorderActivity For now, when recording a video and taking a picture, we get rotation sensor data from the android device. While rotating the device to record a video for landscape or portrait mode, some lags occur. It might be fixed by using orientation sensor data instead of rotation sensor data. 6.3 Compass data In the server side, only an azimuth value(orientation[0]) is used among the 15 compass data. We will think about how remaining data will use. 6.4 Resolution Currently, the android device sends the photo and video contents with the highest resolution to the server. We will analyze what are the pros and cons on the resolution and make buttons which users can choose the resolution.

14FC Works Geotagging Mobile app Telangana Guidelines

14FC Works Geotagging Mobile app Telangana Guidelines 14FC Works Geotagging Mobile app Telangana Guidelines DOWNLOAD Directions: Go to CDMA portal www.cdma.telangana.gov.in and go to section 14FC Geo Tagging app Download. You will be redirected to below screen

More information

Partner Side SMART Guide

Partner Side SMART Guide Partner Side SMART Guide Table of Contents 1. Introduction... 3 2. Partner Registration Process... 3 3. Additional Form... 12 4. Scorecard... 13 5. View Buyer Profile... 14 Partner Side User Manual 31

More information

VIEVU Solution App User Guide

VIEVU Solution App User Guide VIEVU Solution App User Guide INTRODUCTION VIEVU Solution is the next generation, fully-hosted, cloud evidence management system. This guide describes how to operate the VIEVU Solution. Additional support

More information

Mambu Mobile Overview v4.0.1

Mambu Mobile Overview v4.0.1 Mambu Mobile Overview v4.0.1 1 of 41 Versi on # Change History Date Description Summary of Changes 1.0 June 2014 Initial Release 2.0 November 2014 Updated with changes for Mambu Mobile v2.4 2.5 February

More information

Mambu Mobile Overview v2.9

Mambu Mobile Overview v2.9 Mambu Mobile Overview v2.9 1 of 36 Versi on # Change History Date Description Summary of Changes 1.0 June 2014 Initial Release 2.0 November 2014 Updated with changes for Mambu Mobile v2.4 2.5 February

More information

imonitor+ PRO User Manual

imonitor+ PRO User Manual imonitor+ PRO Dashboard Introduction imonitor+ PRO dashboard helps a community owner to reach people and resolve their issues. One of the most important features of imonitor+ is that it supports real time

More information

Solmetric isv iphone Application. User Manual

Solmetric isv iphone Application. User Manual Solmetric isv iphone Application User Manual Version 1.0 Copyright 2010 Solmetric Corporation www.solmetric.com About Solmetric isv The Solmetric isv Sun Viewer application uses the iphone camera to provide

More information

Nextiva Drive The Setup Process Mobility & Storage Option

Nextiva Drive The Setup Process Mobility & Storage Option Nextiva Drive The Setup Process The Setup Process Adding Users 1. Login to your account and click on the Account icon at the top of the page (this is only visible to the administrator). 2. Click Create

More information

Geospatial Information collection tool for PDA using Cloud computing GEO-PRO Ver1.0 User Guide. March 29, 2016 PIPE DESIGN, Inc.

Geospatial Information collection tool for PDA using Cloud computing GEO-PRO Ver1.0 User Guide. March 29, 2016 PIPE DESIGN, Inc. Geospatial Information collection tool for PDA using Cloud computing GEO-PRO Ver1.0 User Guide March 29, 2016 PIPE DESIGN, Inc. 1. Structure of the system The "Geo Pro" aims at utilizing GoogleMap and

More information

Web Push Notification

Web Push Notification Web Push Notification webkul.com/blog/web-push-notification-for-magento2/ On - January 13, 2017 This impressive module allows you to send push notification messages directly to the web browser. The biggest

More information

Real Estate Mobile App Features

Real Estate Mobile App Features Real Estate Mobile App Features How To Review The App Demo On Your Device Download the Preview Your App app today on your ios or Android Devices from the App Store or Google Play Store. To view this demo

More information

ELDES SECURITY APP QUICK GUIDE

ELDES SECURITY APP QUICK GUIDE ELDES SECURITY APP QUICK GUIDE en Contents 1. INSTALLATION... 3 2. REGISTRATION... 3 3. ENABLING ELDES SECURITY APP ON ALARM PANEL... 4 4. LAUNCHING THE APP... 5 4.1. HOW TO RESET YOUR PASSWORD (IN CASE

More information

Evidence.com 1.31 Release Notes

Evidence.com 1.31 Release Notes 1.31 Release Notes January 26, 2016 Document Version 1.0 Apple, ios, and Safari are trademarks of Apple, Inc. registered in the US and other countries. Firefox is a trademark of The Mozilla Foundation

More information

The VIDEO1st app is installed with 4 predefined stages following the video and photograph capture. These stages are:

The VIDEO1st app is installed with 4 predefined stages following the video and photograph capture. These stages are: This guide describes the features and functionality available within VIDEO1 st and how the software is used on a handheld device, including smartphones and tablets. To use the VIDEO1 st application and

More information

WiaTag 1.4. User Guide. date: January 1, 2017

WiaTag 1.4. User Guide. date: January 1, 2017 WiaTag 1.4 date: January 1, 2017 Table of Contents Overview 4 Creating a Unit for WiaTag 5 Unit Creation From the Monitoring System 5 Unit Creation From the Application 6 Starting Application and Choosing

More information

KACE GO Mobile App 5.0. Getting Started Guide

KACE GO Mobile App 5.0. Getting Started Guide KACE GO Mobile App 5.0 Getting Started Guide Table of Contents Using the KACE GO Mobile App...3 Getting Started...3 What features are included in this version of the KACE GO Mobile App?...3 How do I access

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

1 Introduction Requirements Architecture Feature List... 4

1 Introduction Requirements Architecture Feature List... 4 Contents 1 Introduction... 2 1.1 Requirements... 2 1.2 Architecture... 3 1.3 Feature List... 4 1.3.1 Device Compliance status... 4 1.3.2 Auto grouping for devices... 5 1.3.3 Auto grouping for applications...

More information

Points Management. All user points in Locus Map are managed in Points manager. It can be accessed: from the main menu: from Functions panel:

Points Management. All user points in Locus Map are managed in Points manager. It can be accessed: from the main menu: from Functions panel: 2018/11/17 11:22 1/30 All user points in Locus Map are managed in Points manager. It can be accessed: from the main menu: from Functions panel: Locus Map - knowledge base - http://docs.locusmap.eu/ Last

More information

Verizon MDM UEM Unified Endpoint Management

Verizon MDM UEM Unified Endpoint Management Verizon MDM UEM Unified Endpoint Management Version: 1.0 Last Updated: 3/29/18 Table of Contents Unified Endpoint Management (UEM) Overview... 4 Account Dashboard... 4 Unified Endpoint Management (UEM)

More information

Foxit Software Incorporated. All Rights Reserved.

Foxit Software Incorporated. All Rights Reserved. 1 Foxit Software Incorporated. All Rights Reserved. No part of this document can be reproduced, transferred, distributed or stored in any format without the prior written permission of Foxit. Anti-Grain

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

Team Management. Coaches and Team Managers Guide

Team Management. Coaches and Team Managers Guide Team Management Coaches and Team Managers Guide November 2015 Table of Contents Table of Contents Overview Audience About the Mobile App Examples Creating a Sport Ngin Account Accessing Team Center For

More information

VIEVU Solution App User Guide

VIEVU Solution App User Guide VIEVU Solution App User Guide Contact Us If you need assistance or have any questions, please visit www.vievu.com/vievu-solutionsupport, contact us by phone at 888-285-4548, or email support@vievu.com.

More information

YU Kaltura Media Package User's Guide For version 1.1.x. Written by Media and Information Technology Center, Yamaguchi University.

YU Kaltura Media Package User's Guide For version 1.1.x. Written by Media and Information Technology Center, Yamaguchi University. YU Kaltura Media Package User's Guide For version 1.1.x Written by Media and Information Technology Center, Yamaguchi University. May 22th, 2018 Table of contents 1. Summary... 2 2. Installation... 4 2.1

More information

7 The system should allow administrator to close a user profile. 8 The system shall make the old events invisible to avoid crowded geo scope.

7 The system should allow administrator to close a user profile. 8 The system shall make the old events invisible to avoid crowded geo scope. Requirement 1 2 3 4 5 6 Description The system shall upload pictures to a hashtag specified by the user, or to their current location The system shall allow a user to reserve a hashtag, allowing the user

More information

The first time you launch the application you will have to accept the Terms and Conditions.

The first time you launch the application you will have to accept the Terms and Conditions. Cisco WebEx Meetings Updated as of 8/7/18 Use Guide Cisco Webex Meetings Mobile (Android) Install Webex Meetings View Your Upcoming Meetings Join a Meeting Connect to the Audio Conference Schedule a Meeting

More information

Genymotion Cloud User Guide

Genymotion Cloud User Guide User Guide Copyright No part of this document may be reproduced or transmitted in any form or by any means, without prior written permission of Genymobile. Android is a trademark of Google Inc. Amazon

More information

SIGNATUS USER MANUAL VERSION 3.7

SIGNATUS USER MANUAL VERSION 3.7 SIGNATUS USER MANUAL VERSION 3.7 CONTENTS 1 INTRODUCTION... 3 1.1 Launching SIGNATUS... 4 1.1.1 Update your SIGNATUS License... 4 1.2 Main Menu... 6 2 SETTINGS OVERVIEW... 7 3 OPEN DOCUMENT... 8 3.1 Form

More information

Copyright Samsung Electronics Co., Ltd. All rights reserved.

Copyright Samsung Electronics Co., Ltd. All rights reserved. CONTENTS Copyright 2014 Samsung Electronics Co., Ltd. All rights reserved. It is subject to Apache License, Version 2.0 (hereinafter referred to as the "License"). You may not use this file except in compliance

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

Mambu Mobile Overview v5.0

Mambu Mobile Overview v5.0 Mambu Mobile Overview v5.0 1 of 44 Versi on # Change History Date Description Summary of Changes 1,0 June 2014 Initial Release 2,0 November 2014 Updated with changes for Mambu Mobile v2.4 2,5 February

More information

How to Use the Teaching Strategies GOLD Documentation App on Tablets for Android

How to Use the Teaching Strategies GOLD Documentation App on Tablets for Android How to Use the Teaching Strategies GOLD Documentation App on Tablets for Android Please note: Screenshots show the app on a Google Nexus 7 tablet. Other tablets for Android, including the Amazon Kindle

More information

West Bengal. Android Mobile Application

West Bengal. Android Mobile Application - West Bengal Android Mobile Application - West Bengal How to Install the APP? How to install the app? The Android APK file needs to be downloaded in your mobile phone from website www.icdswb.indiagis.org

More information

ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION

ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION Jakov Videković, Josip Balen Faculty of Electrical Engineering, Computer Science and Information Technology Kneza

More information

IGEEKS TECHNOLOGIES. Software Training Division. Academic Live Projects For BE,ME,MCA,BCA and PHD Students

IGEEKS TECHNOLOGIES. Software Training Division. Academic Live Projects For BE,ME,MCA,BCA and PHD Students Duration:40hours IGEEKS TECHNOLOGIES Software Training Division Academic Live Projects For BE,ME,MCA,BCA and PHD Students IGeekS Technologies (Make Final Year Project) No: 19, MN Complex, 2nd Cross, Sampige

More information

ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION

ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION KoREMA INSTRUCTION TO AUTHORS ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION Jakov Videković, Josip Balen Faculty of Electrical Engineering, Computer Science and

More information

Configuring and Using Osmosis Platform

Configuring and Using Osmosis Platform Configuring and Using Osmosis Platform Index 1. Registration 2. Login 3. Device Creation 4. Node Creation 5. Sending Data from REST Client 6. Checking data received 7. Sending Data from Device 8. Define

More information

Deep Dive into the ArcGIS Geotrigger Service. Aaron CTO, Esri R&D Center Portland

Deep Dive into the ArcGIS Geotrigger Service. Aaron CTO, Esri R&D Center Portland Deep Dive into the ArcGIS Geotrigger Service Aaron Parecki @aaronpk CTO, Esri R&D Center Portland Geotrigger SDKs and API Just Launched! developers.arcgis.com What could your app do if it knew where it

More information

2015 Mobiliya. All Rights Reserved Page 2

2015 Mobiliya. All Rights Reserved Page 2 Contents About this Guide... 3 Getting Started... 3 About Mobiliya Shoonya... 3 Key Features... 3 Add-on Features... 4 1. Sign In... 5 2. Admin Dashboard... 6 1. Licenses... 6 2. Users... 7 3. Devices...

More information

WolkAbout IoT Tool Mobile Application v2.4. User Manual

WolkAbout IoT Tool Mobile Application v2.4. User Manual WolkAbout IoT Tool Mobile Application v2.4 User Manual Table of Contents: Introduction 2 Account Registration 2 Web Registration 2 Mobile Registration 4 Mobile Application Installation and Configuration

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

Table of Contents. I. How do I register for a new account? II. How do I log in? (I already have a MyJohnDeere.com account.)

Table of Contents. I. How do I register for a new account? II. How do I log in? (I already have a MyJohnDeere.com account.) Quick Start Guide If you are an App Developer, you can get started by adding a new app and configuring it to consume Deere APIs on developer.deere.com. Use this Quick Start Guide to find and try our APIs.

More information

Lesson 5 Nimbits. Chapter-6 L05: "Internet of Things ", Raj Kamal, Publs.: McGraw-Hill Education

Lesson 5 Nimbits. Chapter-6 L05: Internet of Things , Raj Kamal, Publs.: McGraw-Hill Education Lesson 5 Nimbits 1 Cloud IoT cloud-based Service Using Server at the Edges A server can be deployed at the edges (device nodes) which communicates the feeds to the cloud service. The server also provisions

More information

Oracle Cloud Using Oracle IoT Connected Worker Cloud Service

Oracle Cloud Using Oracle IoT Connected Worker Cloud Service Oracle Cloud Using Oracle IoT Connected Worker Cloud Service 17.4.5 E84369-02 December 2017 Oracle Cloud Using Oracle IoT Connected Worker Cloud Service, 17.4.5 E84369-02 Copyright 2017, Oracle and/or

More information

ELDES SECURITY APP QUICK GUIDE

ELDES SECURITY APP QUICK GUIDE ELDES SECURITY APP QUICK GUIDE en Contents 1. INSTALLATION... 3 2. REGISTRATION... 3 3. ENABLING ELDES SECURITY APP ON ALARM PANEL... 4 4. LAUNCHING THE APP... 5 4.1. HOW TO RESET YOUR PASSWORD (IN CASE

More information

Android project proposals

Android project proposals Android project proposals Luca Bedogni, Federico Montori 13 April 2018 Abstract In this document, we describe three possible projects for the exam of Laboratorio di applicazioni mobili course. Each student

More information

VMware Workspace ONE UEM Integration with Smart Glasses. VMware Workspace ONE UEM 1811

VMware Workspace ONE UEM Integration with Smart Glasses. VMware Workspace ONE UEM 1811 VMware Workspace ONE UEM Integration with Smart Glasses VMware Workspace ONE UEM 1811 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you

More information

Marketing Cloud Mobile App

Marketing Cloud Mobile App Salesforce, Winter 19 @salesforcedocs Last updated: January 9, 2019 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc., as are other

More information

Quick Start Guide. For more information, please visit us at

Quick Start Guide. For more information, please visit us at TM Quick Start Guide For more information, please visit us at www.websitealive.com Quick Start Guide With this Quick Start Guide, you ll be up and running in no time! If you need further assistance, help

More information

Axon Capture for ios App Guide. Axon Capture Release: 3.x Release Date: February 2016 Document Revision: A

Axon Capture for ios App Guide. Axon Capture Release: 3.x Release Date: February 2016 Document Revision: A Axon Capture for ios Axon Capture Release: 3.x Release Date: February 2016 Document Revision: A Apple, ios, and Safari are trademarks of Apple, Inc. registered in the US and other countries. Firefox is

More information

1. Open any browser (e.g. Internet Explorer, Firefox, Chrome or Safari) and go to

1. Open any browser (e.g. Internet Explorer, Firefox, Chrome or Safari) and go to VMWare AirWatch User Guide for Web Browser You can access your AirWatch Files from a web browser. How to login AirWatch Cloud Storage? 1. Open any browser (e.g. Internet Explorer, Firefox, Chrome or Safari)

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

Introduction. Built-in speaker. Infrared lights. Camera lens. Reset button. Indicator light. Micro- USB port for power supply.

Introduction. Built-in speaker. Infrared lights. Camera lens. Reset button. Indicator light. Micro- USB port for power supply. Axel USER MANUAL Contents Introduction 4 LED Indicators 5 What s Included 6 Wi-Fi Requirements 7 Mobile Device Requirements 7 Download the Momentum App 8 Pairing 9 Pairing additional Momentum Devices 11

More information

Account Management Settings section. Service Request Settings section

Account Management Settings section. Service Request Settings section WebEx Site Configuration Audit Log The following settings are included in the CSV export of changes to the Configuration > Common Site Settings > Options page of WebEx Site Administration. Account Management

More information

The Application of Concepts from Multiple Courses in Creating a Useful App for the University

The Application of Concepts from Multiple Courses in Creating a Useful App for the University The Application of Concepts from Multiple Courses in Creating a Useful App for the University Drew Klein IST Department Doane University 1014 Boswell Ave, Crete, NE 68333 Drew.Klein@Doane.edu Abstract

More information

SchoolMessenger App. User Guide - Mobile (Android) 100 Enterprise Way, Suite A-300. Scotts Valley, CA

SchoolMessenger App. User Guide - Mobile (Android) 100 Enterprise Way, Suite A-300. Scotts Valley, CA COMMUNICATE SchoolMessenger App User Guide - Mobile (Android) West Corporation 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 888-527-5225 www.schoolmessenger.com Table of Contents WELCOME!...

More information

BuilderLink Mobile App Instructions

BuilderLink Mobile App Instructions BuilderLink Mobile App Instructions The BuilderLink Mobile app provides you with greater convenience and flexibility when it comes to managing your warranty. The Mobile app allows you to access many features

More information

Supporting ios Devices

Supporting ios Devices Supporting ios Devices 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their respective owners.

More information

Mobile Surveillance. User Manual

Mobile Surveillance. User Manual Mobile Surveillance User Manual Contents 1 Network Configuration... 1 1.1 Access Device via WLAN...1 1.2 Access Device via 2G/3G/4G Network...1 2 By Phones with Android OS... 2 2.1 Installation Instruction...2

More information

National College of Ireland BSc in Computing 2015/2016. Mahmoud Azzam LocalDeal. Final Report

National College of Ireland BSc in Computing 2015/2016. Mahmoud Azzam LocalDeal. Final Report National College of Ireland BSc in Computing 2015/2016 Mahmoud Azzam 13110241 X13110241@student.ncirl.ie LocalDeal Final Report Table of Contents Table of Contents Executive Summary... 4 1 Introduction...

More information

Copyright 2015 Haltian Ltd. All rights reserved. Haltian and Thingsee are registered trademarks of Haltian Ltd.

Copyright 2015 Haltian Ltd. All rights reserved. Haltian and Thingsee are registered trademarks of Haltian Ltd. Thingsee Engine API Version 01.00, 03.07.2015 Copyright 2015 Haltian Ltd. All rights reserved. Haltian and Thingsee are registered trademarks of Haltian Ltd. Haltian Ltd reserves all ownership rights for

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

Android User Guide. for version 5.3

Android User Guide. for version 5.3 Android User Guide for version 5.3 Contents 1. Installation... 3 1.1. How to install Babelnet... 3 1.2. Enter Babelnet in the search field.... 3 1.3. Safety precautions when using Babelnet on your Android...

More information

Fuse ipad App set up and use

Fuse ipad App set up and use Staff Guide Fuse ipad App set up and use Fuse by TechSmith works with the Camtasia Relay server to enable the submission of a video file from a mobile device to the streaming server for future playback

More information

Copyright Samsung Electronics Co., Ltd. All rights reserved.

Copyright Samsung Electronics Co., Ltd. All rights reserved. Contents Copyright 2014 Samsung Electronics Co., Ltd. All rights reserved. It is subject to Apache License, Version 2.0 (hereinafter referred to as the "License"). You may not use this file except in compliance

More information

RapidIdentity Mobile Guide

RapidIdentity Mobile Guide RapidIdentity Mobile Guide Welcome to the RapidIdentity Mobile Component page. The RapidIdentity Mobile guide describes the installation and configuration options for the RapidIdentity Mobile application.

More information

Create a movie project (using imovie app, version 211, on iphone 6)

Create a movie project (using imovie app, version 211, on iphone 6) Create a movie project (using imovie app, version 211, on iphone 6) This is good to know before you get started: Undo or redo an action You can undo actions up until the last time you opened imovie. Just

More information

Configuring Push Notifications For Xamarin Forms

Configuring Push Notifications For Xamarin Forms Configuring Push Notifications For Xamarin Forms Push Notifications are one-way forms of communication offered to mobile users that some operation (like an update, deletion, or addition) has happened.

More information

Supporting Apple ios Devices

Supporting Apple ios Devices Supporting Apple ios Devices 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

Author: Group 03 Yuly Suvorov, Luke Harvey, Ben Holland, Jordan Cook, Michael Higdon. All Completed SRS2 Steps

Author: Group 03 Yuly Suvorov, Luke Harvey, Ben Holland, Jordan Cook, Michael Higdon. All Completed SRS2 Steps Software Requirements Document for Graffiti Author: Group 03 Yuly Suvorov, Luke Harvey, Ben Holland, Jordan Cook, Michael Higdon Version Date Author Change 0.1 09/13/ SM Initial Document 07 0.2 09/22/

More information

ShareSync Get Started Guide for Windows

ShareSync Get Started Guide for Windows WHAT IS SHARESYNC? ShareSync Get Started Guide for Windows ShareSync is an enterprise-class cloud file backup and sharing service. ShareSync allows you to back up your files in real-time to protect against

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

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

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.7.0 The owncloud developers October 30, 2018 CONTENTS 1 Release Notes 1 1.1 Changes in 2.7.0............................................. 1 1.2 Changes in 2.6.0.............................................

More information

ViewER User Guide. (July, 2017)

ViewER User Guide. (July, 2017) ENGINEERING SOFTWARE DEVELOPMENT MADE EASY ViewER User Guide (July, 2017) www.amcbridge.com Contents: Welcome to ViewER... 3 Requirements and Installation... 4 Getting Started... 5 Main Window UI... 8

More information

VIEVU Solution User Guide

VIEVU Solution User Guide VIEVU Solution User Guide VIEVU Solution is the next generation, fully-hosted, cloud evidence management system. This guide describes how to operate the VIEVU Solution. Additional support material is available

More information

Set up Your Corporate or Personal (BYOD) iphone for Office 365 (Cloud)

Set up Your Corporate or Personal (BYOD) iphone for Office 365 (Cloud) Set up Your Corporate or Personal (BYOD) iphone for Office 365 (Cloud) Email In conjunction with your email migration, you will need to set up your corporate and/or personal (BYOD) iphone to access your

More information

Required Core Java for Android application development

Required Core Java for Android application development Required Core Java for Android application development Introduction to Java Datatypes primitive data types non-primitive data types Variable declaration Operators Control flow statements Arrays and Enhanced

More information

Axon Capture for Android Devices User Manual

Axon Capture for Android Devices User Manual Axon Capture for Android Devices User Manual Document Revision: E Product functions and specifications may change without notice and the actual product may vary from the illustrations in this manual. Google,

More information

D3D Security Pvt ltd

D3D Security Pvt ltd D3D Security Pvt ltd Copyright Notice @ 2017 D3D. All right reserved. All text instructions on product information and services are protected by copyright or other intellectual property, any use of the

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

Please Note To use this extension, you must have UVdesk account. You can create a free UVdesk account here.

Please Note To use this extension, you must have UVdesk account. You can create a free UVdesk account here. UVdesk Helpdesk webkul.com/blog/uvdesk-magento2-free-helpdesk-ticket-system/ January 31, 2017 UVdesk Helpdesk is an amazing extension which allows the customers to create support tickets regarding their

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

SchoolMessenger App. Parent Guide - Mobile. West Corporation. 100 Enterprise Way, Suite A-300. Scotts Valley, CA

SchoolMessenger App. Parent Guide - Mobile. West Corporation. 100 Enterprise Way, Suite A-300. Scotts Valley, CA COMMUNICATE SchoolMessenger App Parent Guide - Mobile West Corporation 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 888-527-5225 www.schoolmessenger.com Contents WELCOME!... 3 SCHOOLMESSENGER

More information

Faculty of Computing,Sathyabama University, Chennai, Tamilnadu, India. Received on Accepted on

Faculty of Computing,Sathyabama University, Chennai, Tamilnadu, India. Received on Accepted on ISSN: 0975-766X CODEN: IJPTFI Available Online through Research Article www.ijptonline.com EFFECTIVE ANDROID MOBILE ANTI-THEFT APPLICATION WITH CONTINUOUS TRACKING AND USER PROFILE RECORDING M. Ancy Rose

More information

Application Account Setup & Maintenance Initial Account Setup Account Maintenance

Application Account Setup & Maintenance Initial Account Setup Account Maintenance Application Account Setup & Maintenance Initial Account Setup Account Maintenance The Skyward Mobile Access application is available for free download onto ios, Android, and Windows devices from their

More information

Axon Capture for Android Devices User Manual

Axon Capture for Android Devices User Manual Axon Capture for Android Devices User Manual IMPORTANT SAFETY INSTRUCTIONS Read all warnings and instructions. Save these instructions. The most up-to-date warnings and instructions are available at www.taser.com

More information

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual Mobiketa Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging Quick-Start Manual Overview Mobiketa Is a full-featured Bulk SMS and Voice SMS marketing script that gives you control over your

More information

VMware AirWatch Android Platform Guide

VMware AirWatch Android Platform Guide VMware AirWatch Android Platform Guide Workspace ONE UEM v9.4 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. This product

More information

Centralized Access of User Data Channel with Push Notification

Centralized Access of User Data Channel with Push Notification Centralized Access of User Data Channel with Push Notification #1 #2 #3 #4 Abhishek PriyadarshiP P, Ritu KaramchandaniP P, Nikhil GuptaP P, Arsalan GundrooP P, Department of computer Engineering, D.Y.

More information

METRO BUS TRACKING SYSTEM

METRO BUS TRACKING SYSTEM METRO BUS TRACKING SYSTEM Muthukumaravel M 1, Manoj Kumar M 2, Rohit Surya G R 3 1,2,3UG Scholar, Dept. Of CSE, Panimalar Engineering College, Tamil Nadu, India. 1muthukumaravel.muthuraman@gmail.com, 2

More information

VMware Workspace ONE UEM Integration with Apple School Manager

VMware Workspace ONE UEM Integration with Apple School Manager VMware Workspace ONE UEM Integration with Apple School Manager VMware Workspace ONE UEM Integration with Apple School Manager VMware Workspace ONE UEM 1811 You can find the most up-to-date technical documentation

More information

Security Philosophy. Humans have difficulty understanding risk

Security Philosophy. Humans have difficulty understanding risk Android Security Security Philosophy Humans have difficulty understanding risk Safer to assume that Most developers do not understand security Most users do not understand security Security philosophy

More information

VMware AirWatch Integration with Apple School Manager Integrate with Apple's School Manager to automatically enroll devices and manage classes

VMware AirWatch Integration with Apple School Manager Integrate with Apple's School Manager to automatically enroll devices and manage classes VMware AirWatch Integration with Apple School Manager Integrate with Apple's School Manager to automatically enroll devices and manage classes Workspace ONE UEM v9.6 Have documentation feedback? Submit

More information

APP MANUAL. Car Assistant APP MANUAL

APP MANUAL. Car Assistant APP MANUAL APP MANUAL Car Assistant APP MANUAL 1 Introduction REQUIREMENTS The Car Assistant app works on a mobile device (a smartphone or a tablet) with an Android 4.0 or newer system. Apple mobile device works

More information

ESChat Quick Start Guide

ESChat Quick Start Guide ESChat Quick Start Guide for Android Devices January 19, 2016 1 - ESChat Android Quick Start Guide For ESChat version 19.1 or greater 2 - ESChat Android Quick Start Guide Activating ESChat First Time Installation

More information

AFreimburseTM User Guide

AFreimburseTM User Guide AFreimburseTM User Guide Your Guide to Getting Started on AFreimburse Easily manage your reimbursement accounts from your mobile phone! Managing your reimbursement account on-the-go is easier than ever

More information

Axon Capture for Android Devices User Manual

Axon Capture for Android Devices User Manual Axon Capture for Android Devices User Manual IMPORTANT SAFETY INSTRUCTIONS Read all warnings and instructions. Save these Instructions. The most up-to-date warnings and instructions are available at www.taser.com.

More information

GeneXus for Smart Devices course - Architecture of Smart Device Applications

GeneXus for Smart Devices course - Architecture of Smart Device Applications GeneXus for Smart Devices course - Architecture of Smart Device Applications The problem to solve is the construction of a backend for a real estate office, with a web section and another section for smart

More information