-->

Route all the internet traffic from my android voi

2019-07-29 02:16发布

问题:

We have set up our own VPN Server and want to route all the traffic from our VOIP android app through this server.

But all the solutions I have seen thus far use the vpn service class http://developer.android.com/reference/android/net/VpnService.html, which creates a vpn tunnel for the whole device and not just my application. I want the other apps running on the phone to use the internet as normal while the traffic from our app is routed through our VPN server.

Is there anyway to do this? I am very grateful for any suggestions. Thanks

回答1:

VpnService does not need to apply to the whole device. See: VpnService.Builder.addAllowedApplication (available with API 21 - 5.0):

Adds an application that's allowed to access the VPN connection. If this method is called at least once, only applications added through this method (and no others) are allowed access. Else (if this method is never called), all applications are allowed by default. If some applications are added, other, un-added applications will use networking as if the VPN wasn't running.



标签: android voip vpn