Hi guys,
can anyone tell me, how could this in B4A
Many thanks,
Robert
can anyone tell me, how could this in B4A
B4X:
final String EXTRA_NAME = "de.blinkt.openvpn.shortcutProfileName";
Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
shortcutIntent.setClassName("de.blinkt.openvpn", "de.blinkt.openvpn.LaunchVPN");
shortcutIntent.putExtra(EXTRA_NAME,"test");
startActivity(shortcutIntent);
Many thanks,
Robert