Recently I came across this Error in Xcode while I am trying to install my App on the simulator. The error message says that, “This app could not be installed at this time. Failed to load Info.plist from bundle at path …” The screenshot of the error popup is the following. Solution 1. remove use_frameworks! from […]
How to implement Pull To Refresh for RecyclerView in Android – Java
Android provides SwipeRefreshLayout to implement pull to refresh functionality in Android. We can use it for RecyclerView, ListView, or other types of views. In this tutorial, I will explain how you can implement Pull To Refresh for RecyclerView using SwipeRefreshLayout in Android. The following is the Java code for pull to refresh functionality. If you […]
Method to Get Last n Characters of a String in JAVA
In this post, I am going to share a simple method that will help you to get last n (1, 2, 3 4, …) characters from a String in Java. This method is very simple as it just takes String and integer count as a parameter and returns another string containing the last specified number […]
How to Change Build System in Xcode
Apple has released Xcode New Build System for fast & speedy builds. It’s by default enabled now from Xcode 10+. But sometimes we face some issues while using the new Build System. It also happens that a project is running with the old Legacy Build system but not with the new Build System. In Xcode, we […]
How to Check & Change Swift Version in Xcode
In our existing older projects sometimes we face errors because of the older or newer used Swift Version. Following is the simplest way to check and change the Swift version in Xcode. Check Project Swift Version We can check currently used Swift version in our IOS project by navigating to App -> YOUR_TARGET -> Build […]
React Native Error config.h file not found mutex.h During Archive
Today I am going to share the solution to the common error that most of the React Native developers are facing. This error occurs when we run React Native App in IOS or Archive App using Xcode. Its a glog error saying config.h file not found mutex.h. The Screenshot of the error in the following. […]
Unable to resolve module lib-jitsi-meet/lib-jitsi-meet.min
I have recently faced this issue while customizing JitsiMeet SDK and integrating with my existing App. Here I am going to share the solution of the error, how I solved it in my case. The App runs successfully but React Native shows the following error on the Device or Simulator screen. “Unable to resolve module […]
npm ERR! cb() never called!
I have recently faced this error “npm ERR cb never called” while running npm install command in my react-native project to install node modules. Here I am going to share the solution to the problem. The screenshot of the error is the following Solution: “npm ERR cb never called“ I have solved this error by […]
Move GameObject to another with Speed variation in Unity
It’s a common requirement in games to move GameObject to another. In this article, I am going to share a simple C# script that can help you to Move GameObject to another in Unity. You can attach the following script to your game object which you want to move to another GameObject. C# Script to […]
Kotlin Tutorial: Build First Android App in Kotlin
After learning about Kotlin Architecture & Installing Android Studio in previous tutorials, now we are ready to build our first Android App in Kotlin. Follow the tutorial to the end to develop your first Android App in Android Studio. 1. Start a New Android Studio Project If you have not yet installed Android Studio you […]