diff --git a/res/values/strings.xml b/res/values/strings.xml index 52905ffe..28d74f81 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -80,6 +80,7 @@ https://guardianproject.info/releases/proxymob-latest.xpi Set Twitter proxy to host \"localhost\" and port 8118 StoryMaker - Make a story and leave it to tor for security! + https://play.google.com/store/apps/details?id=info.guardianproject.mrapp https://guardianproject.info/2012/05/02/orbot-your-twitter/ Proxy Settings If the Android app you are using can support the use of an HTTP or SOCKS proxy, then you can configure it to connect to Orbot and use Tor.\n\n\n The host settings is 127.0.0.1 or \"localhost\". For HTTP, the port setting is 8118. For SOCKS, the proxy is 9050. You should use SOCKS4A or SOCKS5 if possible.\n \n\n\n You can learn more about proxying on Android via the FAQ at: http://tinyurl.com/proxyandroid\n diff --git a/src/org/torproject/android/wizard/TipsAndTricks.java b/src/org/torproject/android/wizard/TipsAndTricks.java index 5d0872cd..300730b7 100644 --- a/src/org/torproject/android/wizard/TipsAndTricks.java +++ b/src/org/torproject/android/wizard/TipsAndTricks.java @@ -127,6 +127,18 @@ public class TipsAndTricks extends Activity implements TorConstants { } }); + btnLink = (Button)findViewById(R.id.WizardRootButtonInstallStoryMaker); + + btnLink.setOnClickListener(new OnClickListener() { + + public void onClick(View view) { + + String url = getString(R.string.story_maker_url); + startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url))); + + } + }); + /** btnLink = (Button)findViewById(R.id.WizardRootButtonGooglePlay);