Skip to main content

How To Speed Up Your Mobile Phone - Technoob Technology

Is your phone slow? This is a normal thing which happens to everyone by time when you use your phone for years. Doesn't matter which technology is used to build the hardware. There are several reasons causes your phone to slow down. The main reason is your phone's storage gets fragmented. No idea about this? No problem. We will explain it. 




Fragment means spaces between memory modules. Let's imagine you installed some apps called A, B and C. Then you uninstall B. Then there is a empty space in the memory. When you install a new app larger than B,let's call it D, the app first installs in the empty space of B and then the rest of the app is installed after C. When you run app D, your phone has to run the app from two different parts of your phone's memory. From here let's talk about how to avoid fragment and how to speed up your phone.


01.The easiest thing you can do when your phone is slow is giving it a quick restart.

A restart removes all the fragments inside the RAM and rearrange the system and app data. This will surely improve the speed of your phone. But the sad thing is again with the usage data gets fragmented again. So we have to think on something lasts long.





02.Uninstalling unnecessary apps

When we look into others phones, we can see they have installed so many unnecessary apps. These apps sucks your phone's RAM and even processing speed. So think twice before installing an  app as it even causes to fragments. 




03.Use a defraggler 

You can use a defraggler tool to defrag phone's storage. This will give your phone a boost shot for sure. But if your phone is too slow, don't apply this step. 





04.Disable the power saving mode.

Power saving mode limits your phone's processor speeds to reduce battery usage. Turning off this feature will increase phone speed.


Apply these simple steps and your phone will start working as it was. 


Read Our Popular Articles On Mobile Devices

I-phone 9 Rumours

How To Extend Mobile Phone's Battery Life

Samsung Galaxy S9

Comments

Popular posts from this blog

How to make a first person character controller - Unity

A first-person character controller script is the starting point of any fps shooter game. Even new Unity game developers tend to write their own fps controller script before learning anything else as it is challenging and very exciting. In this article, we gonna create two simple fps controllers from scratch and will guide you step by step on how it works. First, let's understand the basic concept of an fps controller. You should have a rotating camera that rotates in the x-axis to look up and down and the character should rotate on the y-axis to look around. There are two ways to create an fps controller in the Unity Engine.  Using Character controller component Using the RigidBody component Both have different advantages and disadvantages when using them. It depends on your game to select the best fps controller according to your needs.  Character controller based fps controller Pros: Is grounded check is built-in Has its own methods to move the ...

How to make an Advanced Audio Manager for Unity - Technoob Technology

Unity engine gives us a good control on audio clips we use, But the problem is when we add several audio sources for several audio clips it's gonna get hard to control them all. And if you want to make some changes to only one audio source you have to find it first.  This will become a mess if you gonna work with more than 10 audio clips. In this case, we can Create an AudioManager and include all the audio clips in it and make some static methods to play, pause the audio from other scripts. This Audio Manager is written in C# and if you use unity-script you have to convert this into unity script first. In this tutorial, we gonna create an audio manager which contains 7 methods. 1.Play 2.Pause 3.Unpause 4.Stop 5.FadeIn 6.FadeOut 7.lower volume for a duration First, we need a Custom class which contains some strings, floats, bools and an audio clip. This class is not derived from unity mono behavior so we should add [System.Serializable] t...

How to make an Event-System for unity - Technoob Technology

First, What is an Event-System? An Event-System is a collection of scripts we use to send messages between game objects without linking them through the Unity inspector. The best use of this is when you want to connect a game object of the scene to a prefab. Unity Engine doesn't allow us to do that through the inspector and the best way to get this done is by using an Event-System. What if you have 50 enemies in the game and you want to notify them all when the player dies. Without an Event-System we have to connect all the enemies to a manager or some kind of a script to do that... Think about having an array of 50 enemies. This can be solved easily using an Event-System. We will do a basic example of using this event system in the end of the article. Well, now we know the advantages of using an Event-System. Lets start coding our own simple Event-System. First we have to get an idea on how this works. First, a script in the scene raises an event using a static method o...