monkeyM
monkeyM

Reputation: 343

Action to open up VPN Settings Activity for API > 2.3.7

I need to open the system vpn settings activity through my app but can't find a way. I noticed there is a similar question here, but it's asking a solution targeting Android 2.2 which is not applicable for versions above 2.3.7.

So what action should I pass to an Intent to open the system vpn settings activity for android 2.3.7 above?

Upvotes: 1

Views: 783

Answers (1)

Bryan Herbst
Bryan Herbst

Reputation: 67209

The following Intent seems to work right now, but it is undocumented and thus not guaranteed to continue to work with future version of Android:

startActivity(new Intent("android.net.vpn.SETTINGS"));

If you are supporting a minimum SDK version of 14, then you should consider using VpnService and the related APIs instead.

Upvotes: 1

Related Questions