System VPN detection
// Android system VPN detection
override fun onSystemVPNDetected() {
TODO("Not yet implemented")
}
// iOS system VPN detection
case systemVPN
// Flutter system VPN detection
onSystemVPN: () => print("System VPN detected")
// Cordova system VPN detection
systemVPN: () => {
// Place your reaction here
}
// React Native system VPN detection
systemVPN: () => {
// Place your reaction here
}
// Capacitor system VPN detection
systemVPN: () => {
// Place your reaction here
}Last updated

