From my app, with these instructions, I can launch a service (OpenVPN) that allows me to connect to my VPN.
Dim i As Intent
i.Initialize(i.ACTION_MAIN, "")
i.SetComponent("de.blinkt.openvpn/.LaunchVPN")
i.PutExtra("de.blinkt.openvpn.shortcutProfileName", "VPN_Telecontrollo")
StartActivity(i)
The screen appears but then I have to "tap" manually on my profile.
View attachment 113758
In your opinion, it is possible to automate everything, that is to start the service and also start the profile (as if I had done tap manually?)
Thanks