即时通讯在eclipse中使用api 10.我想创建一个应用程序来创建一个简单的vpn配置文件,可在手机设置中使用。
我搜索了很多,但我找不到解决方案。
我读到我应该使用如下的VpnProfile ...但我找不到它,这段代码给出了错误...
VpnService service = context.getSystemService(VPN_SERVICE);
VpnProfile profile = VpnProfile.create(L2TP_PROFILE);
profile.setName(myServerName);
profile.setServerName(myServerAddress);
profile.setRouteList(“192.168.1.0/255.255.255.0,192.168.10.0/255.255.255.0”);
service.connect(profile, myUserName, myPassword);
service.setNotificationIntent(myIntent);
如果你能帮助我,我感激你...
谢谢