Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

How to Implement Internationalization in Ionic 2/3 & Angular4 Application

Internationalization is a way of implementation of a service and a product so they can understand to specific local language. Usually this process is known as translation or localization. In Ionic 3/ 4 and Angular 4 application we can use ngx-tra...

How to use Cordova Push Notification Plugin with Google Firebase Cloud Messaging

Cordova push plugin with firebase is used to send notifications in both android and iOS devices. This plugin can be used for Cordova applications with Google Firebase FCM. You can send notifications to one or multiple devices with this plugi...

Cordova Picture Background Plugin to Capture Image without User Interaction

Cordova is a mobile application development framework Owned by Adobe System, it was first created by Nitobi but in 2011 Adobe System acquires/purchases it.  Earlier Crodova is known as PhoneGap. It is a free and open source version of Apache...

Using Ionic Tabs in phonegap application

In this article, you will get to know about navigating tabs in ionic. Tabs can be used to navigate from one page to another inside your application. Using Tabs: You can add tabs in ionic application by using ion-tabs for container element and...

Cordova - File Transfer in Phonegap Application

This plugin can be used to upload and download files. Installing File Transfer Plugin: To install this plugin into your application, run the following command:   cordova plugin add cordova-plugin-file-transfer After installing...

Using Ionic - Cordova Native Audio in Phonegap application

native audio plugin is used for playing audio in your ionic application. To use this plugin you need to install it first in your application directory by following command:   cordova plugin add cordova-plugin-nativeaudio you firs...

How to use SQLite database using Phonegap

In this article, you will learn about the SQLite database in Cordova for mobile application. SQLite is open source database which can be used in phonegap application. It has features as in standard relational database (SQL syntax, prepared state...

How to check device network in Phonegap

Cordova provides cordova-plugin-network-information that checks the cellular and wifi connection of the device and also it can check the internet connection. Installation: To install this plugin run the following command   cordov...

Cordova plugin Geolocation - Plugin provides the information about device's location

Hello Readers, Cordova geolocation API can access the GPS data and provides the information about device's location in the form of its longitude and latitude. GPS, IP address, WIFI, Bluetooth MAC address, GCM/CDMA cell's IDs these al...

Take a picture with device camera in PhoneGap application

Hello Readers,   Cordova camera plugin allows to take pictures with device camera. First of all we need to install the plugin.   We can install it through CLI simple run:   $ cordova plugin add cordova-plugin-ca...

Cordova plugin to login with Google Sign-In on iOS

Hello Readers,   In today's post we will learn about Cordova plugin to login with Google Sign-In on iOS. This plugin allow users with Google Sign-In on iOS application and you will get the user's profile information such as ema...

Cordova plugin console - Get JavaScript logs in your native logs.

Hello Readers,   This plugin use to show JavaScript logs in your native logs. It is very useful and add some additional functions to make it more useful.   First of all we need to install the plugin through CLI run:  ...

Progress loader plugin for Cordova / PhoneGap iOS apps.

Hello Readers, In today's blog we will talk about progress plugin in Cordova / phoneGap apps. It is a progress loader and there is no need to add any JavaScript library for this.   This plugin supports iOS platform. It should be...

Cordova plugin media - record and play back audio files on a device

Hello Readers, In today's post we will discuss about media plugin for Cordova apps. This plugin allows to record and play back audio files on a device. This plugin defines media constructor. We need to use this plugin with the device ready...

Screen shot plugin for Cordova / PhoneGap

Hello Readers, Today's post is about we can capture screen shots in our Cordova / phoneGap application. Well !  This Screenshot plugin provides the functionality that we can capture the screen shot of current screen and save it int...

Use Facebook SDK version4 in cordova app

Hello Readers, In today’s post will see how to use Facebook SDK in Cordova app. First of all we need to register our app with Facebook and have an App Id. If you have not registered your app with Facebook you can Click here and foll...

Import Android Facebook SDK4 in eclipse

Hello Readers, In today's post we will learn to import Android Facebook SDK in eclipse. We faced several problems when import Facebook SDK in eclipse. To import we need to follow the steps as mentioned below:   First of all...

Screenshot plugin for Cordova/phoneGap apps.

Hello Readers, Screenshot plugin for Cordova/phonegap apps allows you to take screenshot of the current open screen and save it to phone storage.   First of all we need to install the following plugin through CLI: $ cordova plu...

Ionic2 and typescript - Plugin to return the information of the current app

Hello Readers, In today's post we will learn about to get app information using ionic2 and typescript. First of all we need to install plugin through CLI: $ ionic plugin add cordova-plugin-app-version   This plugin supports...

Cordova badge plugin for access and modify badge numbers

Hello Readers, Cordova badge plugin notify users to that there is something for them when app is in background. For example: Unread messages, Notifications in apps, etc. This plugin works on Android, iOS, Windows, Wp8, Wp8.1 platforms and...

Cordova plugin for using torch or flashlight of your device

Hello Readers, Cordova flashlight plugin allows you to access device flashlight in your app and you can access it from your app. This plugin works on iOS 5+, Android 2+, wp8 and for Android 6+ runtime permission handled automatically. Fi...

Cordova background plugin- (Keep the app running in background)

Hello Readers, Cordova background mode plugin keeps the app running in background mode. When app pause in background mode and the system keeps open the network but doesn't send data until  app resumes. This plugin helps in those appli...

Cordova plugin for multiple image selection.

Hello Readers, We can choose image through Cordova camera plugin but with this plugin we can only select one image at a time. Now, Cordova image picker plugin helps to select more than one image at a time i.e user can select multiple image at...

Plugin to Check if GPS enabled on Cordova iOS and Android apps

Hello Readers, Cordova Geolocation API works when GPS enabled on device or we can say that it will not provide you the exact position. We can provide manual lat long with out enable GPS. Cordova Geolocation API doesn't provide a way to che...

Cordova Email composer plugin

Hello Readers, Cordova Email composer plugin allows you to send any HTML content to any email account. It provides standard email view into your application and user can edit or delete the content as per requirement. This plugin supports iO...

Native storage of variables in cordova Android / iOS apps.

Hello Readers, Cordova native storage plugin provides persistence storage in Cordova Android and iOS apps. We use this plugin because localStorage has non-persistent property in WebView of Android and iOS. Basically this plugin is specially u...

Installation of ionic 2.

Hello Readers, We can create apps with ionic2 very fast as ionic1. To create a ionic project first of all we need to install ionic2 beta version SDK via CLI.   $ npm install -g ionic@beta   Important : First of all we n...

Cordova plugin for network information

Hello Readers, This plugin provides the information about the device network connection (Cellular or Wifi) or detects a device has internet connection or not. To use this functionality first of all we need to install the following plugin thro...

Testing Cordova In App Purchases on Android and iOS

In this post, you will learn how to test your cordova application with using cordova InAppPurchase. You can test the purchasing with both android and iOS platforms. You need to have android and iOS devices to test it.   Testing on Andr...

A Toast popup plugin for Cordova apps

Hello Readers, This plugin allows you to show a little popup in your app. It is great way to show a non interfering notification. Features : We can choose the direction where to show the toast (i.e Top, Bottom, Left, Right). We can ...

Date picker plugin for Cordova apps

Hello Readers, Today's post is about add datepicker in Cordova application. We have an date picker plugin which supports Android,iOS and windows platform. Install following plugin through CLI : $ cordova plugin add cordova-plugin-d...

Form inputs in Ionic Framework

Hello Readers, Ionic Framework provides some form inputs. These are same as HTML inputs but their styling is different from HTML inputs and we can customize them as required. Forms inputs in Ionic Framework are as follows: 1. ion-checkbox...

How to play sounds in your phonegap application

Cordova provides a plugin to play sounds in your mobile application. It can record an audio file and also play back audio file on the device. Installing the plugin:   cordova plugin add cordova-plugin-media It has a Media constru...

Cordova / Phonegap YouTube Android Player API plugin

Hello Readers, This post is about YouTube Android player API plugin Which allows play videos in YouTube native player. First of all, we need to register our Cordova Android apps in Google Developers Console and then enable the YouTube API. ...

Integrate YouTube API in Cordova Android application

Hello Readers, Today's post is about an integration of YouTube API with Cordova Android apps. To use YouTube API in our app we need API key. So, first of all, we need to register our app with some details. The following steps explain ho...

Download a file and stored locally with Cordova Android/iOS apps

Hello Readers, In this post we will learn how to download a file and stored it locally with Cordova Android/iOS apps.   First, we need to install cordova file transfer plugin via CLI : $ cordova plugin add cordova-plugin-file-t...

Cordova device plugin - Describes the device's hardware and software

Hello Readers, Today's post is about Cordova device plugin that describes the device's hardware and software. We need to install cordova device plugin via CLI: $ cordova plugin add cordova-plugin-device This plugin defines a...

Social message plugin for Apache cordova

Hello Readers, Social message plugin permits you to share message, image and url to social media like Facebook, Twitter, Instagram etc. To use this plugin no need reference any javascript library. We simply install a plugin via CLI. Install...

$ionicGesture service in ionic framework

Hello Readers, $ionicGesture service provides many touch events (  hold, tap,left,right etc) and on the other hand AngularJs ngTouch provides only three touch events (ngClick, ngSwipeLeft and ngSwipeRight). $ionicGesture service makes eas...

Add In App Purchases to your cordova application

In this post, you will get to know of integrating in app purchases in your cordova application. cordova-plugin-inapppurchase is used to add in app purchases into your application for both android and iOS platform. Installing the plugin: &n...

Gestures and Events in ionic framework

Hello Readers, Today’s post is about gestures and events in ionic framework. Ionic framework provides gestures and events to make application more effective. These are the following gestures and events with Example: on-hold :...

Native page transition for cordova application

Hello readers, Cordova native transition plugin provides native transition between your application views. This plugin provides a complete  supervision to you over the duration, direction and type of transition required in your app. This...

Cordova-plugin-contacts: (Which manage the device contacts)

Hello Readers, This post is about Cordova contacts plugin which provides access to the device's contacts database. So in our Cordova application, we can access the contacts from device. First, we need to install the plugin through CLI: ...

Cordova Insomnia plugin - Keep the screen awake

Hello readers, This post is about cordova insomnia plugin. Which prevent the mobile screen from turn down and locking while user is not touching the screen. This feature used in applications when we read a lengthy document or watching a vid...

Automatic icon resizing plugin for Cordova: Phonegap

In this post, you will learn about the plugin for automatic resizing of icons. You must know that both android and iOS platform needs different size of icons according to different devices.     If you need to change your ap...

Show mobile Ad with cordova AdMob plugin

In this post, you will learn how to show mobile ads in your screens. Cordova provides a plugin for google admob. Using this plugin you can show mobile Ad with a line of JavaScript code. It is designed for use in HTML5 based hybrid applications or...

Cordova Unique Device Id (UUID) plugin

Hello readers, This post is about to get Unique Device Id in cordova application. Here is a plugin which provides UUID and does not change when we uninstall the app. Basically, we get new UUID whenever we re-install the app but with this plugi...

Ionic Framework - ionic-side-menus directive in ionic module

Hello Readers, Side menus widely uses in mobile application and it provides a user friendly interface. Ionic framework provides an excellent directive which is easy to implement. In this post we will learn implementation of side menus in our a...

ion-list directive in ionic module

Hello Readers, In this blog we will learn about ionic module's  directive ion-list and ionItem. Basically, lists are widely used in web application and mobile application. List contains items so both can be HTML element. Every list req...

How to use statusbar plugin in phonegap

In this post, you will learn to use statusbar plugin of cordova. The StatusBar object can customize Android and iOS statusbar. Installing the plugin: You should have cordova 5.0+ to install its stable version by the following command:  ...
prev 1 3
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: