openvpn_flutter
openvpn_flutter copied to clipboard
Connection on IOS always disconnected
The application compiles but the connection fails. On android everything is ok.
i have also facing the same issue, is any solution???
i have also facing the same issue, is any solution???
I just found out that this library doesn't fully support vpn for iphone, you have to native code.
Have you solved this problem?i have also facing the same.
Have you solved this problem?i have also facing the same.
Solution:
You can resolve this issue by following one of these steps:
- Option 1: Upgrade your iOS version.
Or, follow these steps:
-
In your
Podfile
, set the platform target:platform :ios, '14.0'
-
In Xcode, navigate to your app's target:
- Go to Runner > General and set the Minimum Deployment Target to 14.0.
-
For the VPNExtension target in Xcode:
- Go to VPNExtension > General and set the Minimum Deployment Target to 15.6.
This worked for me. Thank you!