Why SVG? SVG stands for scalable vector graphics. There may be many reasons to use SVGs, your graphic designer friend might have been exported the app visuals as SVG or simply you may not want to use 5 different rasterized images for your app. How …
Send mail with attachment using Gmail API
To send an email from your app with an attachment like image, video, etc. We can do this by calling 2-3 functions. First, we need to add some required permission in AndroidManifest.xml as below. <uses-permission android:name=”android.permission.INTERNET” /> <uses-permission android:name=”android.permission.GET_ACCOUNTS” /> <uses-permission android:name=”android.permission.WRITE_EXTERNAL_STORAGE” /> Then add necessary …
Image Blur using PanGesture – Swift
Code Sample blureffect_12-11-2019latest Final Output Video blurimage

Google Cloud – HTTP Load Balancer and IPv6
Case: Apple is rejecting apps that are NOT compatible with IPv6. If your app utilizes IPv4-specific APIs or hard-coded IP addresses, you will first need to make few changes to make it compatible for IPv6 before submitting your app to the App Store for review. …

Animation performance with DevTools
In this post you’ll learn how browser rendering works and how to navigate DevTools to diagnose animation performance issues. We’ll use Chrome DevTools, but other browsers have very similar features and the high-level concepts are the same everywhere. When the browser downloads and parses HTML and CSS, …

How to create Node.js https server
1) To create and start https server first, you will have to import https, http and fs modules which are inbuilt Node.js. You will also need to install express to create Node.js server. const express = require(‘express’) const app = express(); const https = require(‘https’); const http = require(‘http’); const fs = …

Steps to follow when development server gets rebooted
When server gets reboot it requires at least 5-10 mins(depends on server hardware and services running) to start all the services so it’s better to keep patience. After that if your service not fall into automatically start category then you’ve to manually start that service …

Send text message within Android Application
To send a text message from our application to the native android message app directly. Yes, We can do that by write some lines of code and providing permission. First, we need to add required permission in AndroidManifest.xml as below. // Only send permission is ok if …

Install Flutter on a MAC
System Requirements Operating Systems: macOS (64-bit) Disk Space: 700 MB (does not include disk space for IDE/tools). Tools: Flutter depends on these command-line tools being available in your environment. Step 1 : Download Flutter SDK from official website https://flutter.dev/docs/get-started/install/macos and Extract the file in the desired location Step 2: Open …
React native code push
What is code push:- CodePush is cloud service that enables React Native & Cordova developers to deploy mobile app update instantly to their users devices. It Works by acting as central repository that developers can publish updates to (JS,HTML,CSS and …