Reputation: 141
I am using an android phone which have 4.4.4 Version of Android.I have enabled developers mode. I want to mock location for some specific purpose. But there is no option of mock location in developers option. Infect there is only one checkbox with USB Debugging Only. No other option is there. What should I do?
Upvotes: 1
Views: 1353
Reputation: 8979
Looks like some manufacturers hide this option. Maybe it'll help you to set the value programatically. The property name is Settings.Secure.ALLOW_MOCK_LOCATION
. Check this answer to see more detailed information.
Note you need root access to be able to change this settings.
Upvotes: 1