Skip to content

Commit 10f689d

Browse files
committed
use url link in locate SDK dialog
1 parent 72af9eb commit 10f689d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/processing/mode/android/AndroidSDK.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@
4141

4242

4343
class AndroidSDK {
44+
static final String DOWNLOAD_URL ="https://developer.android.com/studio/index.html#downloads";
45+
4446
private final File folder;
4547
private final File tools;
4648
private final File platforms;
@@ -56,9 +58,8 @@ class AndroidSDK {
5658
"If it is installed, click “Locate SDK path” to select the <br>" +
5759
"location of the SDK, or “Download SDK” to let <br>" +
5860
"Processing download the SDK automatically.<br><br>" +
59-
"If you want to download the SDK manually, you can visit <br>"+
60-
"http://developer.android.com/sdk/installing/index.html <br>" +
61-
"and select the stand-alone SDK tools. Make sure to install <br>"+
61+
"If you want to download the SDK manually, you can get <br>"+
62+
"the command line tools from <a href=\"" + DOWNLOAD_URL + "\">here</a>. Make sure to install<br>" +
6263
"the SDK platform for API 15 (Android 4.0.3) or higher.";
6364

6465
private static final String SELECT_ANDROID_SDK_FOLDER =

0 commit comments

Comments
 (0)