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


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 : …
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 …
Laravel by default uses swift mailer. If in some case you are getting issue while using swift mailer, In this case you can use PHPMailer. In Laravel 5.4 or Above, you need to do the following steps Install the PHPMailer on your laravel Application. After going to your project …
The Download Manager is a service for handling long-running downloads. The Download Manager handles the HTTP connection and check for connectivity changes, system reboots, etc. to make sure that the download completes successfully. The Download Manager will notify the Activity using a broadcast receiver once …

The Search API allows you to place search fields in your website to search for content within the iTunes Store and Apple Books Store. You can search for a variety of content; including books, movies, podcasts, music, music videos, audiobooks, and TV shows. To search …
Here is the easiest way to bind adapter to recycler view with few lines of code using Last Adapter. Don’t write recycler view adapter again. Not even viewHolder!. Basically Last Adapter use Data Binding to bind data with your views. Data Binding Library is a support …
1. Add MTImageMapView.h and MTImageMapView.m file in Project 2. Add BridgeHeader File #import “MTImageMapView.h” 3. Add Custom Class MTImageMapView in UIImageView 4. Add Image and Coordinate .plist file in Project coordinate file added to image different coordinate location 4. Outlet of UIImageVIew @IBOutlet weak var imgView: MTImageMapView! var …

Deezer API can discover from 30 million track by simply making REST api call. Whenever there is requirement to search for such sound list inside any mobile application we can use this Deezer api. For instance tiktok can search over millions of short soundtrack(30 seconds). If there …
Below class to append/concat two mp4 files using mp4parser. public class Mp4ParserWrapper { public static final String TAG = Mp4ParserWrapper.class.getSimpleName(); public static final int FILE_BUFFER_SIZE = 1024; /** * Appends mp4 audio/video from {@code anotherFileName} to {@code mainFileName}. */ public static boolean append(String mainFileName, String …
If you want to create Boomerang with FFmpeg command then you can use below command to use. Single command to create boomerang video ffmpeg -y -i input.mp4 -filter_complex [0]reverse[1];[0][1]concat=n=2,setpts=0.5*PTS output/boomerrang.mp4 where setpts=0.5*PTS : This is for fast video. [0]reverse[1] : this is for reversing the input video Still …