Cross-Platform Mobile Geolocation Applications Based on PhoneGap
|
|
|
- Dale Park
- 10 years ago
- Views:
Transcription
1 Cross-Platform Mobile Geolocation Applications Based on PhoneGap Niyigena Jean Pierre, Fan Xiumei, Gakwaya Daniel, and Gombaniro Jean Claude Abstract Building mobile applications have been a big challenge. This issue is mainly caused by different programming languages that one has to master when developing mobile applications. To address the latter mentioned bottleneck, PhoneGap, a cross-platform framework that only requires knowing JavaScript, HTML/HTML5 and CSS/CSS3, among many others, was invented. This paper describes the use of PhoneGap geolocation API to determine the location for most of today s on market mobile smart phone platforms. The ease of using only a few lines of JavaScript code to access and manage the mobile device native geolocation API, in most mobile smart phone platforms, makes obvious that mobile geolocation with PhoneGap geolocation API is among the best for mobile cross-platform geolocation applications. Index Terms Cross-platform mobile geolocation, geolocation application, PhoneGap geolocation API, smart phones geolocation. I. INTRODUCTION Nowadays, smart phones are getting much more popularity notably Android and iphone, consequently the developers are turning their attention on mobile based application researches. However, Android and iphone applications development are based on different programming languages, the former is based on Java while the latter is based on Objective C [1]. Table I shows the usual requirements for development environments for various mobile platforms. There are many cross-platform frameworks now, such as Titanium, Rhodes, DragonRad, MoSync and so on. PhoneGap is considered the best one. In 2009, PhoneGap won the People s Choice award at the Web 2.0 Expo Launch- Pad competition. Of course, being a project for geeks, the conference attendees voted for the winner by Short Message Service (SMS) from their mobile phones [2]. Manuscript received May 8, 2014; revised July 28, This work was supported by Natural Science Foundation of China (No ), Beijing Natural Science Foundation (No ), Specialized Research Fund for the Doctoral Program of Higher Education (No ), Shaanxi Province hundred talents program, and the Projects of Major International (Regional) Joint Research Program NSFC (No ). Niyigena Jean Pierre is with the Department of Computer Networks and Technology, School of Computer Science and Technology, Beijing Institute of Technology, Beijing, China ( [email protected]). Fan Xiumei is with the Faculty of Automation and Information Engineering, Xi an University of Technology, China ( [email protected]). Gakwaya Daniel is with the Department of Computer Networks and Security, School of Computer Science and Technology, Beijing Institute of Technology, Beijing, China ( [email protected]). Gombaniro Jean Claude is with the Department of Information Management, Data Mining and Science Reference Management, School of Computer Science and Technology, Beijing Institute of Technology, Beijing, China ( [email protected]). Today, developers use PhoneGap to build mobile application for several reasons like: 1) An application was built using web technology, they want to be able to deploy the application to one or more mobile application stores (such as Apple App Store, Android Market, or Blackberry App World) [2]. 2) They want to build a mobile applications using usual web development skills, but also need the functions of device side (like the calendar or the camera), which mobile browsers do not support. 3) Or they want to make a rapid prototype of mobile application and do not have time to study Objective-C language or Java language. We cannot finish this section without mentioning that applications that are developed using PhoneGap are hybrid applications [2]. This means that these applications are not purely HTML/JavaScript based, nor are they native. Parts of the application, mainly the UI, the application logic, and communication with a server, is based on HTML/JavaScript. The other part of the application that communicates and controls the device (phone or tablet) is based on the native language for that platform. TABLE I: REQUIREMENTS FOR DEVELOPMENT ENVIRONMENTS (FOR VARIOUS MOBILE PLATFORMS) Mobile OS Operating System Software/IDEs Programming Language ios Mac only Xcode Objective C Android BlackBerry Symbian WebOS Windows 7 Phone Windows mainly Windows mainly Elipse/ Java/ ADT Eclipse/ JDE, Java Carbide.c++ Eclipse/ WebOS plugin Visual Studio 2010 Java Java C++ II. THE WORKING THEORY OF PHONEGAP HTML/ JavaScript/ C++ C#,.NET, Silverlight or WPF The working theory of PhoneGap is not complex. The application s user interface consists of essentially a unique screen that contains a unique web view that consumes all of the available space on the device s screen [2]. When the application launches, it loads the web application s startup page (typically index.html but easily changed by the developer to something else) into the web view and then passes control to the web view to allow the DOI: /LNSE.2015.V
2 user to interact with the web application. As the user interacts with the application s content (the web application), links or JavaScript code within the application can load other content from within the resource files packaged with this application or can reach out to the network and pull content down from a web or application server [2]. A. PhoneGap Architecture The PhoneGap s architecture is composed mainly of 3 layers: Web Application, PhoneGap, and OS and native API s. PhoneGap Web Applications JavaScript API s Native API s OS and Native API s Fig. 1. PhoneGap architecture. In Fig. 1 the high-level layer represents the source code of the application. JavaScript and the native API make the composition of the intermediate layer. Principally, this layer is responsible for the interfacing linking the layer of PhoneGap and the web application. In addition, it also makes sure of doing interfacing between the JavaScript API s used by the application and the native API s used by the mobile. This layer functionality is to make sure that the relationship between JavaScript API s and the native API s of each mobile operating system is maintained [3]. JavaScript API s are provided to developers by PhoneGap to allow the access to advanced device features, such as the Menus, GPS, File, Contacts, Connection, Compass, Camera, Calendar, Bluetooth, Barcode, Accelerometer, NFC, etc. application, the rendering engine of HTML, PhoneGap API s and operating system layer. Furthermore, a number of different interfaces are presented in detail, such as the interfacing linking native API s layers and PhoneGap API s. III. PHONEGAP GEOLOCATION API The PhoneGap geolocation API gives location information for the host device, such as longitude and latitude. Frequent origins of location information cover Global Positioning System (GPS) and location deduced from network signals such as IP address, RFID, WiFi and Bluetooth MAC addresses, and GSM/CDMA cell IDs [3]. There is no promise that the API provides the device s effective location. In Fig. 3 is shown the output of different PhoneGap geolocation API properties in an iphone simulator version 6.1. document.addeventlistener( deviceready, ondeviceready, false); function ondeviceready() { navigator.geolocation.getcurrentposition(onsuccess, onerror,{maximumage: 30000, timeout: 5000, enablehighaccuracy: false}); } function onsuccess (position) { var element = document.getelementbyid( geolocation ); element.innerhtml = Latitude: + position.coords.latitude + <br /> + Longitude: + position.coords.longitude + <br /> + Altitude: + position.coords.altitude + <br /> + Accuracy: + position.coords.accuracy + <br /> + Altitude Accuracy: + position.coords.altitudeaccuracy + <br /> + Heading: + position.coords.heading + <br /> + Speed: + position.coords.speed + <br /> + Timestamp: + position.timestamp + <br /> ; } The PhoneGap geolocation API derives from the W3C Geolocation API Specification. Part of mobiles (Windows Phone 7, BlackBerry, Android, Bada, webos and Tizen, to be specific) already have an implementation of this specification. For those mobiles, the built-in support is used instead of using in place of it the PhoneGap s implementation. For mobiles that don t have geolocation support, the PhoneGap implementation coheres to the W3C specification. Fig. 2. Complete diagram of PhoneGap architecture and interfacing among components [1]. In Fig. 2 is presented a more detailed architecture diagram brought forth by IBM. It shows all the components of a web Fig. 3. PhoneGap geolocation API properties in an iphone simulator version
3 A. PhoneGap Geolocation API Methods The PhoneGap geolocation API has three methods successively geolocation.getcurrentposition method, geolocation.watchposition method and geolocation.clearwatch method [4]. 1) Geolocation.GetCurrentPosition Geolocation.getCurrentPosition is an asynchronous function which returns the current position of the device to the callback of geolocationsuccess with a parameter object of Position. The callback of geolocationerror is called with an object of PositionError in case there happens to be an error. 2) Geolocation.watchPosition The asynchronous function geolocation.watchposition returns the current position of the device whenever a change in position is detected. When the device has recovered the new location, the callback function geolocationsuccess is called with the parameter of Position object [5]. In case there is an error, there is a call of geolocationerror with an object of PositionError. 3) Geolocation.clearWatch The function of geolocation.clearwatch brings to an end the watching changes to the location of the device by getting rid of the geolocation.watchposition referred to by watchid. B. Arguments Each of mentioned methods in the previous section takes one, two or three arguments among geolocationsuccess, geolocationerror and geolocationoptions [4]. 1) GeolocationSuccess This is the callback of the user that is invoked in case there is availability of a geolocation position (when using the function of geolocation.getcurrentposition), or when there is a change of position (when using the function of geolocation.watchposition). 2) GeolocationError This is the callback of the user that is invoked in case there is an error for the functions of geolocation. 3) GeolocationOptions Optional parameters to customize the retrieval of the geolocation Position. {maximumage: 3000, timeout: 5000, enablehighaccuracy: true The enablehighaccuracy option tells that the implementation needs to receive the best results. By default, the device will try to use the approach based on the network to retrieve a location. Setting this property to true indicates the scope to use a more accurate method such as satellite positioning. The timeout option is the time that is allowed to pass from the call to geolocation.getcurrentposition or geolocation.watchposition until the corresponding callback of geolocationsuccess is called. If the callback of geolocationsuccess is not called during this time interval, the callback of geolocationerror will be called with an error code of PositionError.TIMEOUT [4]. When used conjointly with geolocation.watchposition, the callback of geolocationerror can be invoked on an interval every timeout milliseconds. The maximumage option accepts the cached location with age does not exceed the specified time in milliseconds. C. Returned Objects (Read-Only) 1) Position interface The Position interface is the container for the geolocation information returned by the PhoneGap geolocation API. Today s API version allows one attribute of type Coordinates and a timestamp. Future versions of the API may allow additional attributes that provide other information about this position (e.g. street addresses). interface Position { readonly attribute Coordinates coords; readonly attribute DOMTimeStamp timestamp; The coords attribute contains a set of geographic coordinates together with their associated accuracy, as well as a set of other optional attributes such as altitude and speed. The timestamp attribute represents the time when the Position object was acquired and is represented as a DOMTimeStamp [DOMTIMESTAMP]. 2) PositionError interface interface PositionError { const unsigned short PERMISSION_DENIED = 1; const unsigned short POSITION_UNAVAILABLE = 2; const unsigned short TIMEOUT = 3; readonly attribute unsigned short code; readonly attribute DOMString message; The code attribute must return the PERMISSION_DENIED (numeric value 1) code for the location acquisition process failed because the document does not have permission to use the Geolocation API, must return the POSITION_UNAVAILABLE (numeric value 2) for the position of the device could not be determined. For instance, one or more of the location providers used in the location acquisition process reported an internal error that caused the process to fail entirely and must return TIMEOUT (numeric value 3) for the length of time specified by the timeout property has elapsed before the implementation could successfully acquire a new Position object [5]. The message attribute must return an error message describing the details of the error encountered. This attribute is primarily intended for debugging and developers should not use it directly in their application user interface. 3) Coordinates interface interface Coordinates { readonly attribute double latitude; readonly attribute double longitude; readonly attribute double? altitude; readonly attribute double accuracy; readonly attribute double? altitudeaccuracy; readonly attribute double? heading; readonly attribute double? speed; The geographic coordinate reference system used by the attributes in this interface is the World Geodetic System (2d) 80
4 [WGS84]. No other reference system is supported. The latitude and longitude attributes are geographic coordinates specified in decimal degrees. The altitude attribute denotes the height of the position, specified in meters above the [WGS84] ellipsoid. If the implementation cannot provide altitude information, the value of this attribute must be null. The accuracy attribute denotes the accuracy level of the latitude and longitude coordinates [6]. It is specified in meters and must be supported by all implementations. The value of the accuracy attribute must be a non-negative real number. The altitudeaccuracy attribute is specified in meters. If the implementation cannot provide altitude information, the value of this attribute must be null. Otherwise, the value of the altitudeaccuracy attribute must be a non-negative real number. The accuracy and altitudeaccuracy values returned by an implementation should correspond to a 95% confidence level. The heading attribute denotes the direction of travel of the hosting device and is specified in degrees, where 0 heading < 360, counting clockwise relative to the true north. If the implementation cannot provide heading information, the value of this attribute must be null. If the hosting device is stationary (i.e. the value of the speed attribute is 0), then the value of the heading attribute must be NaN [6]. The speed attribute denotes the magnitude of the horizontal component of the hosting device s current velocity and is specified in meters per second. If the implementation cannot provide speed information, the value of this attribute must be null. Otherwise, the value of the speed attribute must be a non-negative real number. D. Properties of Objects and Constants 1) Properties of objects 1) Coordinates properties: latitude in decimal degrees (Number), longitude in decimal degrees (Number), altitude of the position in meters above the ellipsoid (Number), accuracy level of the latitude and longitude coordinates in meters (Number), altitudeaccuracy level of the altitude coordinate in meters (Number), heading of travel, specified in degrees counting clockwise relative to the true north (Number), speed of the device, specified in meters per second (Number). 2) Position properties: It contains Position coordinates and timestamp, created by the PhoneGap geolocation API. coords is a set of geographic coordinates (Coordinates) and timestamp which is a creation timestamp for coords (Date). 3) PositionError Properties: code is one of the predefined error codes listed below and message is an error message describing the details of the error encountered. 2) PositionError constants The PositionError object is returned to the user through the geolocationerror callback function when an error occurs with PhoneGap geolocation API. PositionError.PERMISSION_DENIED is returned when the user does not allow your application to retrieve position information. This is dependent on the platform. PositionError.POSITION_UNAVAILABLE is returned when the device was unable to retrieve a position. In general this means the device has no network connectivity and/or cannot get a satellite fix, and PositionError.TIMEOUT is returned when the device was unable to retrieve a position within the time specified in the geolocationoptions timeout property. When using in conjunction with geolocation.watchposition, this error could be called into the geolocationerror callback every timeout milliseconds. IV. PERMISSIONS To use this API, different mobile devices need different permissions to be set up. Table II presents the location of the directory of the configuration file for different devices operating systems. TABLE II: LOCATION OF THE DIRECTORY OF THE CONFIGURATION FILE [6] Permission Permissions Directory/ file Android Permissions are required app/res/xml/config.xml Bada No permissions are required app/res/xml/config.xml BlackBerry WebWorks Permissions are required ios Permissions are required www/plugins.xml www/config.xml webos No permissions are required config.xml Windows Phone Permissions are required Properties/WPAppMan ifest.xml Tizen No permissions are required V. PRIVACY CONSIDERATIONS AND SECURITY Privacy is obvious a concern when you are sharing your physical location with a remote web server [7]. PhoneGap geolocation API is used to retrieve the location of a hosting mobile. In almost all cases, this information also reveals the location of the user mobile, thus potentially harm the privacy of the user. To ensure compliance, the PhoneGap geolocation API specification provided a mechanism to protect the privacy of the user and this mechanism ensures that no location information is revealed by this API without the express permission of the user. A. Privacy Considerations for Implementers of PhoneGap Geolocation API Without the express permission of the user, the device has not to send location information to the application [7]. The application must obtain permission from the user interface, unless it has been prearranged trust relationship with the user, as described below. The user interface must contain the host components of the file URI [URI]. This is done through the user interface and access to these permissions, which must be revocable, will be preserved beyond the current browsing session and the application must respect revoked permissions. Some applications may have no such user interface and there will be trust relationships that have been organized in advance. For example, while some applications shows a user interface when performs requests of the device geolocation, a PhoneGap VOIP application can not show a user interface when requesting location information to make an emergency-calling system. B. Privacy Considerations for Recipients of Location Information 81
5 With PhoneGap geolocation API, the location information beneficiary only requests information when necessary. He can only use location information for the tasks it is provided, must discard location information once that task is finished, unless explicitly the user allows to it. He must also take steps to protect this information from being used illegally. The application should allow the user to update and delete location information if this information is stored. Location information cannot be retransmitted by location information beneficiary without the express permission of the user. Precautions must be considered and the use of encryption is encouraged when forwarding. The location information beneficiary must clearly and conspicuously disclose the fact that location data is being collected, collection purpose, data retaining duration, how the data is obtained and how it is shared, how users access it, update it, and delete it, and the user s many other choice with regard to data. There must be explanation of any exceptions to the guidelines listed above. C. Other Considerations of the Implementation Accordance with the requirements discussed in the previous section, the performers of the PhoneGap geolocation API are also required to consider the following aspects that may have a negative impact on the privacy of the user: In some cases, the mobile device can inadvertently grant authorization to the application to disclose their location. In other cases, the content hosted to a particular URL in the application changes in such a way that the permissions granted are no longer applicable as long as the user is still concerned. Or the user can simply change his minds [7]. It is inherently difficult to predict or prevent these conditions. Mitigation and prevention are responsibility of an implementation and not prescribed by PhoneGap geolocation API. However, in the design of these measures, developers should enable location sharing user awareness and give easy access to interfaces that allow removal of revocation of permissions. VI. CONCLUSION This paper has described mobile cross-platform geolocation based on PhoneGap geolocation API. PhoneGap is a mobile cross-platform development framework invented to solve the problem of different programming languages that developers challenge/encounter when building applications for different mobile platform. PhoneGap geolocation API is supported for multiple today s famous mobile operating systems such as ios, Android, Black Berry, Symbian, WebOS and Windows 7 Phone. PhoneGap geolocation API uses JavaScript, HTML and CSS to determine the location of mobile devices by returning different location properties notably Longitude, Altitude, Accuracy, Altitude Accuracy, Heading, Speed and Timestamp when queried. There is no promise that the PhoneGap geolocation API provides the mobile device s effective location. REFERENCES [1] M. Palmieri, Comparison of cross-platform mobile development tools, in Proc th International Conference on Intelligence in Next Generation Networks (ICIN), Oct. 2012, pp [2] J. M. Wargo, PhoneGap Essentials, Addison-Wesley Professional, 2012, ch. 1, pp [3] N. M. Hui, Cross-platform mobile applications for android and Ios, in Proc th Joint IFIP on Wireless and Mobile Networking Conference (WMNC), April 2013, pp [4] PhoneGap Wiki. [Online]. Available: [5] C. R. Xu, Research on map-positioning technology based on W3C Geolocation API, in Proc nd International Conference on Consumer Electronics, Communications and Networks (CECNet), April 2012, pp [6] Github Cordova plugins. [Online]. Available: [7] B. Pejic, Uses of W3C s Geolocation API, in Proc th International Symposium on Computational Intelligence and Informatics (CINTI), 2010, pp Niyigena Jean Pierre was born in Rwanda on 7th September He holds a bachelor s degree in computer science and technology earned in 2012 from Beijing institute of technology, China. Currently, he is a master s student in the Department of Computer Networks and Security, Faculty of Computer Science and Technology at Beijing institute of technology. Fan Xiumei is a Ph.D. She was born in China in She is now an associate professor at Beijing Institute of Technology (BIT). She is also the 2007 new century China ministry of education excellent talents inductee. In BIT, her research interests mainly includes computer networks quality of service control, wireless ad-hoc networks routing technology, delay tolerant networks, and network performance evaluation. Gombaniro Jean Claude was born in Rwanda on 17th December He holds a bachelor s degree in computer science and technology earned in 2012 from Beijing institute of technology, China. He is now a master s student in the Department of Information Management, Data Mining and Science Reference Management, Faculty of Computer Science and Technology at Beijing institute of technology. Gakwaya Daniel was born in Rwanda on 1st August He holds a bachelor s degree in electrical engineering earned in 2012 from Beijing Institute of Technology, China. He is now a master s student in the School of Computer Science and Technology, Department of Computer Technology at Beijing Institute of Technology. His research mainly focuses on data networks, networks on chip. 82
the intro for RPG programmers Making mobile app development easier... of KrengelTech by Aaron Bartell [email protected]
the intro for RPG programmers Making mobile app development easier... Copyright Aaron Bartell 2012 by Aaron Bartell of KrengelTech [email protected] Abstract Writing native applications for
Bridging the Gap: from a Web App to a Mobile Device App
Bridging the Gap: from a Web App to a Mobile Device App or, so how does this PhoneGap* stuff work? *Other names and brands may be claimed as the property of others. 1 Users Want Mobile Apps, Not Mobile
ios SDK possibilities & limitations
ios SDK possibilities & limitations Licensing Licensing Registered as an Apple Developer (free) Access to XCode3 and ios SDK ios, Mac and Safari Dev Center Resources No possibility of distribution of developed
Enabling Cordova (aka PhoneGap) on Tizen. René Pourtier / Luc Yriarte
Enabling Cordova (aka PhoneGap) on Tizen René Pourtier / Luc Yriarte What is Cordova (aka PhoneGap)? An open-source standards-based development framework for building cross-platform mobile applications
To Study and Design a Cross-Platform Mobile Application for Student Information System using PhoneGap Framework
To Study and Design a Cross-Platform Mobile Application for Student Information System using PhoneGap Framework Avinash Shrivas 1, Anandkumar Pardeshi 2 1 Associate Professor, Vidyalankar Institute of
Building native mobile apps for Digital Factory
DIGITAL FACTORY 7.0 Building native mobile apps for Digital Factory Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels
Developing Native JavaScript Mobile Apps Using Apache Cordova. Hazem Saleh
Developing Native JavaScript Mobile Apps Using Apache Cordova Hazem Saleh About Me Ten years of experience in Java enterprise, portal, mobile solutions. Apache Committer and an open source fan. Author
Issues of Hybrid Mobile Application Development with PhoneGap: a Case Study of Insurance Mobile Application
DATABASES AND INFORMATION SYSTEMS H.-M. Haav, A. Kalja and T. Robal (Eds.) Proc. of the 11th International Baltic Conference, Baltic DB&IS 2014 TUT Press, 2014 215 Issues of Hybrid Mobile Application Development
Comparison of Cross-Platform Mobile Development Tools
2012 16th International Conference on Intelligence in Next Generation Networks Comparison of Cross-Platform Mobile Development Tools Manuel Palmieri Innovation, Design and Engineering Mälardalen University
Retool your HTML/JavaScript to go Mobile
Retool your HTML/JavaScript to go Mobile @atdebonis 2008 Troy Web Consulting LLC All rights reserved 1 Overview What is PhoneGap? What is it good for? What can you use with it? Device Features Dev Tools
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
Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013
Mobility Introduction Android Duration 16 Working days Start Date 1 st Oct 2013 Day 1 1. Introduction to Mobility 1.1. Mobility Paradigm 1.2. Desktop to Mobile 1.3. Evolution of the Mobile 1.4. Smart phone
Mobile Learning Application Based On Hybrid Mobile Application Technology Running On Android Smartphone and Blackberry
Mobile Learning Application Based On Hybrid Mobile Application Technology Running On Android Smartphone and Blackberry Djoni Haryadi Setiabudi, Lady Joanne Tjahyana,Winsen Informatics Department Petra
SYST35300 Hybrid Mobile Application Development
SYST35300 Hybrid Mobile Application Development Native, Web and Hybrid applications Hybrid Applications: Frameworks Native, Web and Hybrid Applications Mobile application development is the process by
Technical and Business Challenges for Mobile Application Developers. Tony Wasserman Carnegie Mellon Silicon Valley Mobicase 2010
Technical and Business Challenges for Mobile Application Developers Tony Wasserman Carnegie Mellon Silicon Valley Mobicase 2010 The Growth of Mobile Applications From zero to 500,000 (or so) in 3 years!
Take full advantage of IBM s IDEs for end- to- end mobile development
Take full advantage of IBM s IDEs for end- to- end mobile development ABSTRACT Mobile development with Rational Application Developer 8.5, Rational Software Architect 8.5, Rational Developer for zenterprise
CROSS PLATFORM APP A COMPARATIVE STUDY
CROSS PLATFORM APP A COMPARATIVE STUDY Paulo R. M. de Andrade, Adriano B. Albuquerque Postgraduate program in applied information University of Fortaleza - UNIFOR Fortaleza - CE, Brazil Otávio F. Frota,
Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle
Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle Safe Harbor Statement The following is intended to outline our general
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
Lecture 4 Cross-Platform Development. <lecturer, date>
Lecture 4 Cross-Platform Development Outline Cross-Platform Development PhoneGap Appcelerator Titanium Xamarin References Native Development Represents the baseline for comparisons You
Web-based Hybrid Mobile Apps: State of the Practice and Research Opportunities
Web-based Hybrid Mobile Apps: State of the Practice and Research Opportunities Austin, 17 th May 2016 Ivano Malavolta Assistant professor, Vrije Universiteit Amsterdam [email protected] Roadmap Who is
COMPARISON OF CROSS-PLATFORM MOBILE DEVELOPMENT TOOLS
COMPARISON OF CROSS-PLATFORM MOBILE DEVELOPMENT TOOLS Inderjeet Singh Mälardalen University Innovation, Development and Technology [email protected] Manuel Palmieri Mälardalen University Innovation,
Smartphone Application Development using HTML5-based Cross- Platform Framework
Smartphone Application Development using HTML5-based Cross- Platform Framework Si-Ho Cha 1 and Yeomun Yun 2,* 1 Dept. of Multimedia Science, Chungwoon University 113, Sukgol-ro, Nam-gu, Incheon, South
Cross-Platform Phone Apps & Sites with jquery Mobile
Cross-Platform Phone Apps & Sites with jquery Mobile Nick Landry, MVP Senior Product Manager Infragistics Nokia Developer Champion [email protected] @ActiveNick www.activenick.net Who is ActiveNick?
Smartphone Enterprise Application Integration
WHITE PAPER MARCH 2011 Smartphone Enterprise Application Integration Rhomobile - Mobilize Your Enterprise Overview For more information on optimal smartphone development please see the Rhomobile White
Developing Cross-platform Mobile and Web Apps
1 Developing Cross-platform Mobile and Web Apps Xiang Mao 1 and Jiannong Xin * 2 1 Department of Electrical and Computer Engineering, University of Florida 2 Institute of Food and Agricultural Sciences
PhoneGap Build Starter
PhoneGap Build Starter Painless Mobile Apps Development Zainul Setyo Pamungkas This book is for sale at http://leanpub.com/phonegapbuild This version was published on 2015-05-26 This is a Leanpub book.
WEB, HYBRID, NATIVE EXPLAINED CRAIG ISAKSON. June 2013 MOBILE ENGINEERING LEAD / SOFTWARE ENGINEER
WEB, HYBRID, NATIVE EXPLAINED June 2013 CRAIG ISAKSON MOBILE ENGINEERING LEAD / SOFTWARE ENGINEER 701.235.5525 888.sundog fax: 701.235.8941 2000 44th St. S Floor 6 Fargo, ND 58103 www.sundoginteractive.com
Developing Applications for ios
Developing Applications for ios Lecture 1: Mobile Applications Development Radu Ionescu [email protected] Faculty of Mathematics and Computer Science University of Bucharest Content Key concepts
place/business fetch details, 184 185 removefromfavorite () function, 189 search button handler bind, 190 191 B BlackBerry build environment
Index A addtofavorite() method, 175 177, 188 189 Android ADT Plugin for Eclipse installation, 22 24 application, GWT Build Path, 244 device info, 247 directory structure, 244, 245 Eclipse classpath, 244
Choosing a Mobile Application Development Approach
ASEAN Journal of Management & Innovation Vol. 1 No. 1, 69 74 by Stamford International University DOI: 10.14456/ajmi..4 ajmi.stamford.edu Choosing a Mobile Application Development Approach Phyo Min Tun
Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7
Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7 Jeff Linwood 1st Chapter, Early Release Introduction... 3 Prerequisites... 3 Introduction to Mobile Apps...
True Web Application Management: Fixing the Gaps in EMM Solutions
True Web Application Management: Fixing the Gaps in EMM Solutions Executive Summary The modern workforce expects to use a combination of laptops, tablets, and smartphones to complete its work. Organizations
Developing and deploying mobile apps
Developing and deploying mobile apps 1 Overview HTML5: write once, run anywhere for developing mobile applications 2 Native app alternative Android -- Java ios -- Objective-C Windows Mobile -- MS tools
Mobile Application Development
Web Engineering Mobile Application Development Copyright 2015 Slides from Federico M. Facca (2010), Nelia Lasierra (updates) 1 2 Where we are? # Date Title 1 5 th March Web Engineering Introduction and
Native, web or hybrid mobile-app development
IBM Software Thought Leadership White Paper WebSphere Native, web or hybrid mobile-app development 2 Native, web or hybrid mobile-app development Contents 2 Introduction 2 Introducing the approaches 2
Remote Android Assistant with Global Positioning System Tracking
IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 16, Issue 2, Ver. III (Mar-Apr. 2014), PP 95-99 Remote Android Assistant with Global Positioning System Tracking
Porting Existing PhoneGap Apps to Tizen OS - Development Story
Porting Existing PhoneGap Apps to Tizen OS - Development Story Anil Kumar Yanamandra Thomas Mitchell ProKarma About ProKarma Who am I? Anil Kumar Yanamandra Mobile Architect & Head CoE for Mobility @ProKarma
DIEGO PINEDO ESCRIBANO ANALYSIS OF THE DEVELOPMENT OF CROSS-PLATFORM MOBILE APPLICATIONS Master of Science Thesis
DIEGO PINEDO ESCRIBANO ANALYSIS OF THE DEVELOPMENT OF CROSS-PLATFORM MOBILE APPLICATIONS Master of Science Thesis Examiner: Professor Tommi Mikkonen Examiner and topic approved by the Faculty Council of
Cross-Platform Development
2 Cross-Platform Development Cross-Platform Development The world of mobile applications has exploded over the past five years. Since 2007 the growth has been staggering with over 1 million apps available
Introduction to PhoneGap
Web development for mobile platforms Master on Free Software / August 2012 Outline About PhoneGap 1 About PhoneGap 2 Development environment First PhoneGap application PhoneGap API overview Building PhoneGap
Developing multidevice-apps using Apache Cordova and HTML5. Guadalajara Java User Group Guillermo Muñoz (@jkoder) Java Developer
Developing multidevice-apps using Apache Cordova and HTML5 Guadalajara Java User Group Guillermo Muñoz (@jkoder) Java Developer WTF is Apache Cordova? Set of device APIs that allow to access native device
BASIC COMPONENTS. There are 3 basic components in every Apache Cordova project:
Apache Cordova is a open-source mobile development framework. It allows you to use standard web technologies such as HTML5, CSS3 and JavaScript for cross-platform development, avoiding each mobile platform
Develop a Native App (ios and Android) for a Drupal Website without Learning Objective-C or Java. Drupaldelphia 2014 By Joe Roberts
Develop a Native App (ios and Android) for a Drupal Website without Learning Objective-C or Java Drupaldelphia 2014 By Joe Roberts Agenda What is DrupalGap and PhoneGap? How to setup your Drupal website
Mobile Web Applications using HTML5. L. Cotfas 14 Dec. 2011
Mobile Web Applications using HTML5 L. Cotfas 14 Dec. 2011 Reasons for mobile web development Many different platforms: Android, IPhone, Symbian, Windows Phone/ Mobile, MeeGo (only a few of them) Reasons
Introduction to Tizen SDK 2.0.0 Alpha. Taiho Choi Samsung Electronics
Introduction to Tizen SDK 2.0.0 Alpha Taiho Choi Samsung Electronics Contents Web technologies of Tizen Components of SDK 2.0.0 Alpha Hello world! Debugging apps Summary 1 Web technologies on Tizen Web
Mobile App Infrastructure for Cross-Platform Deployment (N11-38)
Mobile App Infrastructure for Cross-Platform Deployment (N11-38) Contents Introduction... 2 Background... 2 Goals and objectives... 3 Technical approaches and frameworks... 4 Key outcomes... 5 Project
Keywords Online Aptitude Test, Android, IOS, Cross Platform mobile application Development.
Volume 4, Issue 1, January 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Code Converter
Kaseya 2. User Guide. Version 7.0. English
Kaseya 2 Mobile Device Management User Guide Version 7.0 English September 3, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept
Enterprise Mobile Application Development: Native or Hybrid?
Enterprise Mobile Application Development: Native or Hybrid? Enterprise Mobile Application Development: Native or Hybrid? SevenTablets 855-285-2322 [email protected] http://www.seventablets.com
Navigating the Mobile App Development Landscape
Navigating the Mobile App Development Landscape You keep hearing about user trends towards mobile devices; your 10- year old knows your ipad better than you, and so you figure that your business should
The Suitability of Native Application for University E-Learning Compared to Web-Based Application
The Suitability of Native Application for University E-Learning Compared to Web-Based Application Maya Novia Sari 1, Noor Azian Bt. Mohamad Ali 2 Department of Information Systems, Kulliyyah of Information
Cross Platform Applications with IBM Worklight
IJCSNS International Journal of Computer Science and Network Security, VOL.15 No.11, November 2015 101 Cross Platform Applications with IBM Worklight P.S.S.Vara Prasad and Mrs.S.Durga Devi Dept. of IT
HYBRID APPLICATION DEVELOPMENT IN PHONEGAP USING UI TOOLKITS
HYBRID APPLICATION DEVELOPMENT IN PHONEGAP USING UI TOOLKITS RAJESH KUMAR Technical Lead, Aricent PUNEET INDER KAUR Senior Software Engineer, Aricent HYBRID APPLICATION DEVELOPMENT IN PHONEGAP USING UI
Mobile application testing is a process by which application software developed for hand held mobile devices is tested for its functionality,
Mobile Testing Mobile application testing is a process by which application software developed for hand held mobile devices is tested for its functionality, usability and consistency. A mobile application
Introduction to BlackBerry Smartphone Web Development Widgets
Introduction to BlackBerry Smartphone Web Development Widgets Trainer name Date 2009 Research In Motion Limited V1.00 are stand-alone BlackBerry applications that consist of standard web components, including
How to Choose Right Mobile Development Platform BROWSER, HYBRID, OR NATIVE
How to Choose Right Mobile Development Platform BROWSER, HYBRID, OR NATIVE Solutions Introduction: Enterprises around the globe are mobilizing mission-critical services. Businesses get streamlined due
MOBILIZING ORACLE APPLICATIONS ERP. An Approach for Building Scalable Mobility Solutions. A RapidValue Solutions Whitepaper
MOBILIZING ORACLE APPLICATIONS ERP An Approach for Building Scalable Mobility Solutions A RapidValue Solutions Whitepaper TABLE OF CONTENTS Executive Overview Typical Architecture for Mobilizing Oracle
CiviMobile & CiviSync Mobile. Peter McAndrew Rohit Thakral
CiviMobile & CiviSync Mobile Peter McAndrew Rohit Thakral Agenda Why to? How to? What to? Introduction to CiviMobile What the app looks like today? How does it work? How to install and test? What goes
Ensuring the security of your mobile business intelligence
IBM Software Business Analytics Cognos Business Intelligence Ensuring the security of your mobile business intelligence 2 Ensuring the security of your mobile business intelligence Contents 2 Executive
MENDIX FOR MOBILE APP DEVELOPMENT WHITE PAPER
MENDIX FOR MOBILE APP DEVELOPMENT WHITE PAPER TABLE OF CONTENTS Market Demand for Enterprise Mobile Mobile App Development Approaches Native Apps Mobile Web Apps Hybrid Apps Mendix Vision for Mobile App
An Analysis of Mobile Application Development Approaches
April 2014, HAPPIEST MINDS TECHNOLOGIES An Analysis of Mobile Application Development Approaches Author Umesh Narayan Gondhali 1 SHARING. MINDFUL. INTEGRITY. LEARNING. EXCELLENCE. SOCIAL RESPONSIBILITY.
Securely. Mobilize Any Business Application. Rapidly. The Challenge KEY BENEFITS
Mobilize Any Business Application. Rapidly. Securely. The Challenge Today's enterprises are increasingly leveraging mobility solutions to improve productivity, decrease response times and streamline operational
Building Apps for iphone and ipad. Presented by Ryan Hope, Sumeet Singh
Building Apps for iphone and ipad Presented by Ryan Hope, Sumeet Singh 1 Let s continue the conversation! @MaaS360 [Share comments, continue Q&A, suggest future topics] #MaaS360Webinar Click the link in
Electronic Ticket and Check-in System for Indico Conferences
Electronic Ticket and Check-in System for Indico Conferences September 2013 Author: Bernard Kolobara Supervisor: Jose Benito Gonzalez Lopez CERN openlab Summer Student Report 2013 Project Specification
Kaseya 2. User Guide. Version 1.0
Kaseya 2 Mobile Device Management User Guide Version 1.0 March 12, 2012 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations.
HP ALM Masters 2014 Connected, collaborative mobile application development for the enterprise HP Anywhere
HP ALM Masters 2014 Connected, collaborative mobile application development for the enterprise HP Anywhere A radically different kind of user Mainframe Client/Server Web Devices System-centric User-centric
Development and Implementation of Location Based Native Mobile Application
Development and Implementation of Location Based Native Mobile Application Case Study Zlatko Čović Subotica Tech College of Applied Sciences, Department of Informatics, Marka Oreškovića 16, Subotica, Serbia
Making Mobile a Reality
Making Mobile a Reality KIEFER CONSULTING CALIFORNIA DEPARTMENT OF TECHNOLOGY Introductions Scott Paterson California Department of Technology, Enterprise Solutions Harkeerat Toor Kiefer Consulting, Consultant
Multi-Platform Mobile Application Development Analysis. Lisandro Delía Nicolás Galdámez Pablo Thomas Leonardo Corbalán Patricia Pesado
Multi-Platform Mobile Application Development Analysis Lisandro Delía Nicolás Galdámez Pablo Thomas Leonardo Corbalán Patricia Pesado Agenda 1. 2. 3. 4. 5. Introduction Multi-Platform Mobile Applications
Location-Based Services Using HTML5 Geolocation and Google Maps APIs
Location-Based Services Using HTML5 Geolocation and Google Maps APIs Wen-Chen Hu Department of Computer Science University of North Dakota Grand Forks, ND 58202 [email protected] Naima Kaabouch Department
Smart Phones Application development using HTML5 and related technologies: A tradeoff between cost and quality
www.ijcsi.org 455 Smart Phones Application development using HTML5 and related technologies: A tradeoff between cost and quality 1 Yousuf Hasan, 2 Mustafa Zaidi, 3 Najmi Haider, 4 W.U.Hasan and 5 I.Amin
Statement of Direction
Mobile First: Taking Mobile CRM to the Next Level 1 January 2013 Mobile First: Taking Mobile CRM to the Next Level Whitepaper Mobile First: Taking Mobile CRM to the Next Level 2 Table of Contents Notes...
Survey, Comparison and Evaluation of Cross Platform Mobile Application Development Tools
Survey, Comparison and Evaluation of Cross Platform Mobile Application Development Tools Isabelle Dalmasso, Soumya Kanti Datta, Christian Bonnet, Navid Nikaein Mobile Communication Department, EURECOM
BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note
BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise
Kony Mobile Application Management (MAM)
Kony Mobile Application Management (MAM) Kony s Secure Mobile Application Management Feature Brief Contents What is Mobile Application Management? 3 Kony Mobile Application Management Solution Overview
Analysis of Cross-Platform Development Frameworks for a Smartphone Pediatric Application
Analysis of Cross-Platform Development Frameworks for a Smartphone Pediatric Application Rui Oliveira 1, Gabriel Pontes 2, José Machado 1 and António Abelha 1 1 Department of Informatics, University of
Here s how to choose the right mobile app for you.
Here s how to choose the right mobile app for you. There is no arguing with statistics. The future of the web is mobile. Tablet shipments are increasing exponentially and within two years consumer broadband
Developer Guide: Hybrid Apps. SAP Mobile Platform 2.3
Developer Guide: Hybrid Apps SAP Mobile Platform 2.3 DOCUMENT ID: DC01920-01-0230-01 LAST REVISED: February 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains to Sybase
ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET
ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET PRODUCTIVE ENTERPRISE MOBILE APPLICATIONS DEVELOPMENT KEY FEATURES Visual and declarative development Mobile optimized user experience Simplified access to
Mobile Enterprise Application Development - a Cross-Platform Framework
Mobile Enterprise Application Development - a Cross-Platform Framework FLORIAN WOLF, KARSTEN HUFFSTADT Applied Research Center for Mobile Solutions University of Applied Sciences Wuerzburg-Schweinfurt
Taxi Service Design Description
Taxi Service Design Description Version 2.0 Page 1 Revision History Date Version Description Author 2012-11-06 0.1 Initial Draft DSD staff 2012-11-08 0.2 Added component diagram Leon Dragić 2012-11-08
MOBILIZE ME! APPS FOR MOBILE DEVICES OR MOBILE WEB APPS TECHNOLOGIES, TOOLS, ASSESSMENTS
MOBILIZE ME! APPS FOR MOBILE DEVICES OR MOBILE WEB APPS TECHNOLOGIES, TOOLS, ASSESSMENTS The uptrend in mobile web apps is continuing. More and more people are tending to their private and professional
Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe.
Tutorial Learning Objectives: After completing this lab, you should be able to learn about: Learn how to use Xcode with PhoneGap and jquery mobile to develop iphone Cordova applications. Learn how to use
Integrating Mobile into Your Cross- Platform Strategy with Qt
Integrating Mobile into Your Cross- Platform Strategy with Qt Tuukka Ahoniemi Technical Product Marketing Manager [email protected] Qt Developer Days 2014 Agenda Qt and Mobile Platforms
HTML5 the new. standard for Interactive Web
WHITE PAPER HTML the new standard for Interactive Web by Gokul Seenivasan, Aspire Systems HTML is everywhere these days. Whether desktop or mobile, windows or Mac, or just about any other modern form factor
Development for Mobile Devices Tools from Intel, Platform of Your Choice!
Development for Mobile Devices Tools from Intel, Platform of Your Choice! Sergey Lunev, Intel Corporation HTML5 Tools Development Manager Optional: Download App Preview Android bit.ly/1i8vegl ios bit.ly/1a3w7bk
Enterprise Mobile App Management Essentials. Presented by Ryan Hope and John Nielsen
Enterprise Mobile App Management Essentials Presented by Ryan Hope and John Nielsen 1 Mobile App Trends Global mobile app downloads to exceed 30B by 1016 US and Europe account for over 70% of the market
Whitepaper. Trans. for Mobile
Whitepaper Trans forming Your Vision Into Winning Solutions How to Save 50%, 75% or more for Mobile Appp Development www.baytechservices.com Background As mobile access has transitioned from a nice to
unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001
unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product or related information described
AWS Device Farm. Developer Guide API Version 2015-06-23
AWS Device Farm Developer Guide AWS Device Farm: Developer Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used
Middleware- Driven Mobile Applications
Middleware- Driven Mobile Applications A motwin White Paper When Launching New Mobile Services, Middleware Offers the Fastest, Most Flexible Development Path for Sophisticated Apps 1 Executive Summary
ADF Mobile Overview and Frequently Asked Questions
ADF Mobile Overview and Frequently Asked Questions Oracle ADF Mobile Overview Oracle ADF Mobile is a Java and HTML5-based mobile application development framework that enables developers to build and extend
White Paper INTRODUCTION. In mobile development, there are three different types of applications: PRE-SMARTPHONE MOBILITY NATIVE MOBILE APPLICATIONS
INTRODUCTION The mobile development arena is growing very quickly, especially in the business-to-consumer (B2C) space. We are also seeing significant growth in business-to-business (B2B) enterprise applications
Review of Cross-Platforms for Mobile Learning Application Development
Review of Cross-Platforms for Mobile Learning Application Development Nabil Litayem 1, 2, Bhawna Dhupia 1, Sadia Rubab 1 1 Computer Science and Information, Salman Bin Abdulaziz University Wadi College
Leveraging Partners and Open Source Technology in your Mobility Strategy. emids webinar Thursday, August 11, 2011 1:00 pm 2:00 pm EDT
Leveraging Partners and Open Source Technology in your Mobility Strategy emids webinar Thursday, August 11, 2011 1:00 pm 2:00 pm EDT Presenters Jerry Buchanan Account Director emids Technologies Ambarish
Cross Platform Application for Smartphones Unreserved Ticket Generator for Mumbai Local Trains
Cross Platform Application for Smartphones Unreserved Ticket Generator for Mumbai Local Trains Sangeeta Oswal 1, Pabla Rajinder Singh 2, Mitali Chile 3, Priyanka Tripathi 4 VESIT MCA Department Chembur
