ServiceObjects – SOAP

Configuring a SOAP service is a very simple action to take. It needs two parameters only. Lets see the picture first; Service name, unique names between same type service is a “should”. If you keep this issue in account, it becomes whatever you like, giving proper names will be helpful later on though WSDL(Web Service […]

Read More

ServiceObject – REST

ServiceObjects REST is for RESTful services. Basically, there is a simple gui for that. Lets do it step by step via using “http://api.openweathermap.org/data/2.5/weather?q=London&appid=yourKey” service.   1- Open Configuration Wizard of REST Services. Click Add New Service button, choose type as REST and click open wizard button. 2- Define Service Name and Base URL. First define […]

Read More

Splash Screen and App Icon Sizes

<platform name=”android”>     <!– you can use any density that exists in the Android project –>     <splash src=”res/screen/android/splash-land-hdpi.png” density=”land-hdpi”/>     <splash src=”res/screen/android/splash-land-ldpi.png” density=”land-ldpi”/>     <splash src=”res/screen/android/splash-land-mdpi.png” density=”land-mdpi”/>     <splash src=”res/screen/android/splash-land-xhdpi.png” density=”land-xhdpi”/>     <splash src=”res/screen/android/splash-port-hdpi.png” density=”port-hdpi”/>     <splash src=”res/screen/android/splash-port-ldpi.png” density=”port-ldpi”/>     <splash src=”res/screen/android/splash-port-mdpi.png” density=”port-mdpi”/>     <splash […]

Read More

Livo EMP Architecture

Livo Enterprise Mobility Platform is end-to-end mobile app development, deployment and management platform. It provides 3 components which you need for your enterprise mobile app: Mobile Container: To use native device functions and to enable HTML5 app development. IDE: Jquery Mobile enabled development environment. Middleware: To mobilise your business data.

Read More

Livo Mobile – Evaluation Guide

We did a simple Weather query app which gets weather data from a public API (http://api.openweathermap.org). We also create a simple UI to query weather of a city. This document explains how you can evaluate the complete system step by step. With these steps you will be evaluated all 3 components of Livo: Client container […]

Read More

ServiceObjects Architecture

“ServiceObjects” makes middleware integrations available to use for client applications beside other objects that are presented or incoming, such as “DataObjects”. It has 3 methods that help developer to build necessary configurations and service specific methods on JavaScript side. 1. Getting List of ServiceObjects Avaible on The Middleware Livo.ServiceObjects.listServiceObjects(successCallback,errorCallback); method gets all available ServiceObjects as […]

Read More

cordova.vibration

This plugin aligns with the W3C vibration specification http://www.w3.org/TR/vibration/ This plugin provides a way to vibrate the device. Quick Example vibrate = function(arg) { navigator.notification.vibrate(arg);// vibrate(3000), vibration for 3 seconds. };

Read More

cordova.splashscreen

This plugin displays and hides a splash screen during application launch or can be used during reload actions. Quick Example showSplashScreen = function() { //will show splash screen for 3 seconds navigator.splashscreen.show(); setTimeout(function() { navigator.splashscreen.hide(); }, 3000); }; Methods splashscreen.show splashscreen.hide Quick Example showSplashScreen = function() { //will show splash screen for 3 seconds navigator.splashscreen.show(); […]

Read More

cordova.network-information

Connection The connection object, exposed via navigator.connection, provides information about the device’s cellular and wifi connection. Properties connection.type Constants Connection.UNKNOWN Connection.ETHERNET Connection.WIFI Connection.CELL_2G Connection.CELL_3G Connection.CELL_4G Connection.CELL Connection.NONE connection.type This property offers a fast way to determine the device’s network connection state, and type of connection. Quick Example checkConnection = function () { var networkState = navigator.connection.type; var states […]

Read More

cordova.media-capture

WARNING: Collection and use of images, video, or audio from the device’s camera or microphone raises important privacy issues. Your app’s privacy policy should discuss how the app uses such sensors and whether the data recorded is shared with any other parties. In addition, if the app’s use of the camera or microphone is not […]

Read More