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 …
Technology
Image Blur using PanGesture – Swift
Code Sample blureffect_12-11-2019latest Final Output Video blurimage

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, …

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 …

Chat Using Firebase
What is Firebase? Firebase was founded in 2012 as a real-time architecture for syncing data between apps. It was acquired by Google in 2014. Originally, it was a part of Envolve, a real-time chat integration API. Overtime, the developers realized that the system was being …

Vanilla : Issue with signIn and register button popup not open
Problem :- – After vanilla upgrade signIn and Register,SignOut Link not work so solve for comment code into following file. Solution:- – Changes and Comment Into Following File File Name:- vanilla/applications/dashboad/controllers/class.enteycontroller.php signIn methode:- line:- 888-890 /*if (!$this->Request->isPostBack()) { $this->checkOverride(‘SignIn’, $this->target()); }*/ register methode:- line:- 1249-1251 …

Android native animation
To represent UI with some creative thing we use animation. Animation in the android application is provided by android native itself we just need to modify as per our requirement that which type of animation we need to do on view. We will learn about Transition animation. => View …

Adding script pop-up in Xcode
How to Add a Run Script Build Phase in Xcode Step – 1 : Click on Project icon Step – 2 : click on Edit scheme you can add script in run/archive/debug time application Step – 3 : Click on Run DropDown Step – 4 : …
Laravel : Mail configuration issue with godaddy server
Recently I was facing mail configuration issue with godaddy server in laravel framework. So now I am going to share solution for solve issue. Laravel by default uses swift mailer. If you are getting same issue which I was getting with godaddy server in laravel framework …