Re: [android-developers] No activity found for ACTION_APPLICATION_DEVELOPMENT_SETTINGS

2010-12-04 Thread Mark Murphy
What are you testing this on? If it's an emulator, what SDK level is it? If it is a device, what model is it? On Sat, Dec 4, 2010 at 5:03 AM, gg9h0st wrote: > hello~ > > I'm working on a fake gps app and want to show "Settings -> > Application -> Development" activity when "Allow mock locations"

[android-developers] No activity found for ACTION_APPLICATION_DEVELOPMENT_SETTINGS

2010-12-04 Thread gg9h0st
hello~ I'm working on a fake gps app and want to show "Settings -> Application -> Development" activity when "Allow mock locations" setting is inactive. below is the code work pretty good. Intent intent = new Intent(); intent.setAction(Settings.ACTION_APPLICATION_SETTINGS); startActivity(intent);