aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2015-07-16 17:06:40 -0700
committerKenny Root <kenny@the-b.org>2015-07-16 17:10:25 -0700
commitecd38ce02b7123e159fccaed188a2dd7ee884d5a (patch)
treefa003cd12cc8edd3746b35b39a30e048257765e0
parent22d3b06bd0bf839c34f2e4ea7c61630ea563a492 (diff)
downloadconnectbot-ecd38ce02b7123e159fccaed188a2dd7ee884d5a.tar.gz
connectbot-ecd38ce02b7123e159fccaed188a2dd7ee884d5a.tar.bz2
connectbot-ecd38ce02b7123e159fccaed188a2dd7ee884d5a.zip
Change README file to Markdown format
Also get rid of some old sections that don't make sense anymore.
-rw-r--r--README31
-rw-r--r--README.md27
2 files changed, 27 insertions, 31 deletions
diff --git a/README b/README
deleted file mode 100644
index 8347d76..0000000
--- a/README
+++ /dev/null
@@ -1,31 +0,0 @@
-Google Play
-----------------
-
-<a href="https://play.google.com/store/apps/details?id=org.connectbot">
- <img alt="Get it on Google Play"
- src="https://developer.android.com/images/brand/en_generic_rgb_wo_60.png" />
-</a>
-
-Translations
-----------------
-
-If you'd like to see ConnectBot translated into your language and you're willing to help, then head on over to
-https://translations.launchpad.net/connectbot/trunk/+pots/fortune
-
-
-Compiling
-----------------
-
-To compile ConnectBot using Ant, you must specify where your Android SDK is via the local.properties file. Insert a line similar to the following with the full path to your SDK:
-
-sdk.dir=/usr/local/android
-
-
-ProGuard Support
-----------------
-
-Download the ProGuard distribution from its website at http://proguard.sourceforge.net/ and place the proguard.jar into the "tools" subdirectory in the ConnectBot root directory.
-
-When running ant to build ConnectBot and engage ProGuard, use:
-
-ant proguard release
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e7e0b92
--- /dev/null
+++ b/README.md
@@ -0,0 +1,27 @@
+Google Play
+----------------
+
+[![Get it on Google Play][2]][1]
+
+ [1]: https://play.google.com/store/apps/details?id=org.connectbot
+ [2]: https://developer.android.com/images/brand/en_generic_rgb_wo_60.png
+
+Translations
+----------------
+
+If you'd like to see ConnectBot translated into your language and you're
+willing to help, then head on over to
+https://translations.launchpad.net/connectbot/trunk/+pots/fortune
+
+
+Compiling
+----------------
+
+To compile ConnectBot using gradlew, you must first specify where your
+Android SDK and NDK are via the local.properties file. Insert a line
+similar to the following with the full path to your SDK:
+
+```
+sdk.dir=/opt/android-sdk
+ndk.dir=/opt/android-ndk
+```