diff --git a/res/values/strings.xml b/res/values/strings.xml
index d380579b..69a0edf0 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -77,8 +77,8 @@
Proxy Settings - Learn how to configure apps to work with Orbot
DuckDuckGo Search Engine app
https://duckduckgo.com/android/latest.apk
- Proxy Mobile add-on for Firefox (http://tinyurl.com/getproxymob)
- https://guardianproject.info/releases/proxymob-latest.xpi
+ Proxy Mobile add-on for Firefox (https://guardianproject.info/apps/firefoxprivacy)
+ https://guardianproject.info/apps/firefoxprivacy
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
@@ -275,5 +275,8 @@
EXPERTS ONLY: enter direct torrc config lines
Custom Torrc
-
+ Mobile Martus - Benetech Human Rights Documentation App
+ https://play.google.com/store/apps/details?id=org.martus.android
+
+
diff --git a/src/org/torproject/android/wizard/TipsAndTricks.java b/src/org/torproject/android/wizard/TipsAndTricks.java
index 2fcf9d2e..d10278ba 100644
--- a/src/org/torproject/android/wizard/TipsAndTricks.java
+++ b/src/org/torproject/android/wizard/TipsAndTricks.java
@@ -124,7 +124,19 @@ public class TipsAndTricks extends Activity implements TorConstants {
}
});
- /**
+ btnLink = (Button)findViewById(R.id.WizardRootButtonInstallMartus);
+
+ btnLink.setOnClickListener(new OnClickListener() {
+
+ public void onClick(View view) {
+
+ String url = getString(R.string.martus_url);
+ startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
+
+ }
+ });
+
+
btnLink = (Button)findViewById(R.id.WizardRootButtonGooglePlay);
btnLink.setOnClickListener(new OnClickListener() {
@@ -135,8 +147,7 @@ public class TipsAndTricks extends Activity implements TorConstants {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
}
- });
- */
+ });
Button back = ((Button)findViewById(R.id.btnWizard1));