How to install sockets in cordova both backend and frontend Date : 04/09/2019 Introduction Generally Sockets are used for realtime update bidirectionally between client and server. The following will describe how to configure in cordova framework. Sockets are pipeline connection will instantly reflect change other side when connected. You just… Continue Reading How to install sockets in cordova both backend and frontend

How to setup and build cordova application for Android Date : 22/08/2019 Introduction Apache Cordova is an open-source mobile development framework. It allows you to use standard web technologies – HTML5, CSS3, and JavaScript for cross-platform development. So we can use it in any kind of platforms. It will come… Continue Reading How to setup and build cordova application for Android

Fundamental things to know in android activity and fragment Date : 12/06/2019 Activity The Activityclass is basically a crucial component of an Android app, and the way activities are launched and put together is a fundamental part of the platform’s application model. Hence an activity provides the window in which… Continue Reading Fundamental things to know in android activity and fragment

How to setup animation in android Date : 20/06/2019 Introduction Animation in android application are used to remove raw motions in android. However without an animation there can’t be good user experience so, we used. As a simple you can write an animation in XML file and use in your… Continue Reading How to setup animation in android

How to use checkbox and radio buttons Date : 05/06/2019 step 1 : check box Check boxes allow the user to select one or more options from a set. Typically, you should present each checkbox option in a vertical list. The implementation part is simple that you need to mention… Continue Reading How to use checkbox and radio buttons

How to setup navigation drawer in android application Date : 29/05/2019 Introduction With the navigation drawer one can navigate to many screens or functionalities of the app by clicking on the ‘hamburger’ icon. Swiping from the left is also a way to bring the drawer into view, a screen then… Continue Reading How to setup navigation drawer in android application

How to setup spinner in android application. Date : 23/05/2019 Introduction Spinners provide a quick way to select one value from a set. In the default, a spinner shows its currently selected value. Touching the spinner, it displays a drop down menu with all other available values, from which the… Continue Reading How to setup spinner in android application.

How to implement Recycler view in android Date 16/05/2019 Overview In recyclerview, several component work together to bind the data in the user interface. The main container is the recylerview component in layout file. The single view holder are represented by the views implemented in recyclerview. Then the onBindViewHolder will… Continue Reading How to implement Recycler view in android

How to use Rx-java with Room in android Date : 08/04/2019 Prerequisite If you need to use Rx-java in android, then add the following dependency in your gradle file as depend on the version of Rx-java you use. // RxJava support for Roomimplementation “android.arch.persistence.room:rxjava2:1.0.0-alpha5” Need of Rx-java Rx-java eliminates the… Continue Reading How to use Rx-java with Room in android

How to decompile android application Date : 02/05/2019 Prerequisite 1.Initially, download apktool via this link. http://ibotpeaches.github.io/Apktool/install/ However, you can also use command line to install it. 2.Therefore, download java decompiler in .jar format preferably than any other OS oriented packages. http://jd.benow.ca/ 3. Most importantly, download dex2jar via this the link.… Continue Reading How to get source code of any android application