G33K-TRICKS: Mobiles
Showing posts with label Mobiles. Show all posts
Showing posts with label Mobiles. Show all posts

Monday, March 21, 2016

Fake GPS Location on Android Phone


How to Fake GPS Location on Android Phone

To Start with , to spoof your vicinity on Android is to become a developer. That does not mean you need to become actual developer duh!! You simply need to activate developer option inside the Android settings menu.

Goto Settings > About Android > Tap on that option 7 times until you get the affirmation activate as shown.

Fake your GPS Location
Fake GPS Location on Android

You'll want to go back a step to the root Settings menu and go to "Developer options". Once inside the sub-menu, find the Allow mock locations option and tick the check box right next to it.

Fake GPS location on Android
Enable Developer Options for Fake GPS Location



Now, get some GPS spoofing Application from Google Play.
You can try using Fake GPS Location Spoofer for Free.
Once Installed , you will be requested to enable
Turn Off the WIFI if possible, coz android can look into your location using your WIFI.
Now, click on the Location Settings button in the pop-up and then go to Mode within the menu.


How to Fake your GPS Location on Android phones


Once inside the Menu, select GPS only.
Next, choose a Location on the Map and "Double tap" on the screen to set it.
Once Set, all the other apps and services that looks for GPS location, will be spoofed.


How to Fake your GPS Location on Android phones
GPS Spoofing



Sunday, February 21, 2016

[Solved] Opera Mini "Font Data Calculation"


How to disable "Font Data Calculation" screen on Opera Mini.


Few days back I installed Opera Mini on my Android Mobile and just after launching the app displays an annoying screen "Font Data Calculation" 
What I know is that , this screen comes when your android phone is having some different Fonts and non-stock fonts,

Here is a simple g33ktrick for you.

1. Open Opera Mini app
2. Type "about:config"  and tap on Enter
3. Scroll down to "Use bitmap fonts for Complex scripts" and Select "Yes" option
4. Save the settings.
5. Now, close and Relaunch your Opera Mini without "font data calculation" screen.

Also, above setting can be used to Solve issues when you are not able to see some fonts at some websites.

This g33ktrick would work on Apple and Windows OS phones as well.

Saturday, September 5, 2015

How to remove an Application (apk) from an Android Phone using command


Simple steps to Remove APK using Command line


Have you ever want to remove an android app from your own android device and that stubborn thing  just don't want to leave your device.
Yeah!!! its simple to Remove right, you can just  go to Settings > Apps and Uninstall

What if you can 
First you need to have and Rooted Phone. If its not rooted, then you are in little deep trouble.

Connect you phone to your PC/Laptop
If your PC  already have phone's drivers, you can see your Phone getting mounted in My Computer

Next you need an adb utility. If you don't have get it from here.

Once connected,
Open CMD prompt and goto the path where you have kept the adb utility.

Now type, adb devices and hit enter
e.g
C:\My Downloads> adb devices

This command will return the serial number of your phone. If it does not return anything in that case, you need to enable the USB Debugging from the "Developer Settings" .
[ And again, if you dont have Developer option not available in your Settings, goto Settings > About Phone> tap 5/7 times on "Build Number" and it will be available under Settings ] 

After getting assured that the phone is connected via adb.
type , adb root

C:\My Downloads> adb root

On rooted phone, an pop up will appear asking for root permission. It depends on which app you have used to permit ownership as "Super User".
Grant the permission from the phone.

Now type, adb shell

This will take you to the android shell (which is ofcourse linux based, and if you have busybox binary installed in your phone , you can do much more with this tool)

Now from the shell prompt type, cd /data/app
This will take you to user apps folder.
the path would look like,















Screen-shot  (In my case, I went to adb shell first and then ran "su" command to get the root permission.)

Now type,
root@xyz: ls | grep -i "<appname_to_remove>"

Say, the app name is "whatsapp"

root@xyz: ls | grep -i "whatsapp"

This will result in getting, the list of app(s) with the app you want to remove.
If you have given a proper apk name. The ls command will list it.

Then just remove that app, thats all

 root@xyz: rm com.<appname_to_remove>.apk


Remove apk usng command line









You have to remove only the app which is shown in the list after ls | grep -i <> and please make sure the app name which you are removing is correct. Coz, once gone is gone when you remove it using rm command.

After this, just reboot the phone using Power key or type, adb reboot




Search Queries:
How to remove app using command
app not getting removed from android phone