From my app, with these instructions, I can launch a service (OpenVPN) that allows me to connect to my VPN.
The screen appears but then I have to "tap" manually on my profile.
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
B4X:
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)
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