summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2018-03-22 13:51:07 +0100
committerArne Schwabe <arne@rfc2549.org>2018-03-22 13:51:07 +0100
commit3eca5f7e424f6b1989e3245567bcdd034a80c92d (patch)
tree7b6eb716518e37b499fc051b9337280eb60eb3ba /doc
parentb6180c14ff9cf182563d1ea1b5ab5eddc563d691 (diff)
Implement also Connect for the Remote API
Diffstat (limited to 'doc')
-rw-r--r--doc/README.txt4
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);
}