Vpn is not connecting in release apk and aab
After all fixes in latest plugin, now apk build and run successfully but vpn is not connecting it's automatically disconnected. What i have tried yet added in gradle file android.bundle.enableUncompressedNativeLibs = false added in manifest android:extractNativeLibs="true"
disable minifyEnabled false debuggable false shrinkResources false
I had the same issue. I added openvpn_flutter as a local dependency and it worked.
copy openvpn_flutter package from the local pub cache and paste in the root of your flutter project. Then in pubspec.yaml replace
openvpn_flutter: [version]
with
openvpn_flutter: path: ./openvpn_flutter-1.2.0
I had the same issue. I added openvpn_flutter as a local dependency and it worked.
copy openvpn_flutter package from the local pub cache and paste in the root of your flutter project. Then in pubspec.yaml replace
openvpn_flutter: [version]
with
openvpn_flutter: path: ./openvpn_flutter-1.2.0
Adding dependency as local does nothing to solve the issue and it's not the case. Maybe you ended up using different library version or something else has happen.
@nizwar
You can use version 1.2.0
openvpn_flutter: git: url: https://github.com/bugrevealingbme/openvpn_flutter-120
@0ttik