I have service where I need to turn on GPS forcefully I tried some of the code which are working good on activity codes are like,
Intent intent=new Intent("android.location.GPS_ENABLED_CHANGE");
intent.putExtra("enabled", true);
sendBroadcast(intent);
But this code are not working on a service can any one tell me the Solution.