From 2be022663e6f2c2b017d97b3ecc8a16a94186488 Mon Sep 17 00:00:00 2001 From: John Knox Date: Mon, 16 Nov 2020 09:39:50 -0800 Subject: [PATCH] Improve invalid android sdk message Reviewed By: nikoant Differential Revision: D24993553 fbshipit-source-id: de2044aeac45fa139eef82b2e6785c461b8cfe5a --- desktop/doctor/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/doctor/src/index.ts b/desktop/doctor/src/index.ts index cf132cb59..03ff358ef 100644 --- a/desktop/doctor/src/index.ts +++ b/desktop/doctor/src/index.ts @@ -119,7 +119,7 @@ export function getHealthchecks(): Healthchecks { if (!fs.existsSync(androidHome)) { return { hasProblem: true, - message: `ANDROID_HOME points to a folder which does not exist: ${androidHome}.`, + message: `ANDROID_HOME points to a folder which does not exist: ${androidHome}. You can use Flipper Settings (File > Preferences) to point to a different location.`, }; } const platformToolsDir = path.join(androidHome, 'platform-tools');