Route all the internet traffic from my android voi

2019-07-29 01:35发布

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

标签: android voip vpn
1条回答
叼着烟拽天下
2楼-- · 2019-07-29 02:17

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.

查看更多
登录 后发表回答