diff options
Diffstat (limited to 'doc/README.txt')
-rw-r--r-- | doc/README.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/README.txt b/doc/README.txt index 736e368b..f629cc72 100644 --- a/doc/README.txt +++ b/doc/README.txt @@ -73,10 +73,10 @@ A: public class StartOpenVPNActivity extends Activity { super.onCreate(savedInstanceState); setContentView(R.layout.main); - final String EXTRA_NAME = "de.blinkt.openvpn.shortcutProfileName"; + final String EXTRA_NAME = "de.blinkt.openvpn.api.profileName"; Intent shortcutIntent = new Intent(Intent.ACTION_MAIN); - shortcutIntent.setClassName("de.blinkt.openvpn", "de.blinkt.openvpn.LaunchVPN"); + shortcutIntent.setClassName("de.blinkt.openvpn", "de.blinkt.openvpn.api.ConnectVPN"); shortcutIntent.putExtra(EXTRA_NAME,"upb ssl"); startActivity(shortcutIntent); } |