Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
API-14 可用于为 android 实现 vpn 服务。如何实施?
您可以参考开源项目 openvpn 以了解如何在 android 中实现 VPN 服务。您可能还想看这个
http://code.google.com/p/ics-openvpn/
谢谢
首先,您需要在您的代码中 decalre VPN 服务,如下所示
<service android:name=".ExampleVpnService" android:permission="android.permission.BIND_VPN_SERVICE"> <intent-filter> <action android:name="android.net.VpnService"/> </intent-filter> </service>
您还可以查看此链接以获取更多详细信息