From bbc2e8d9a11cf41bff42266dec685b6d9ec9dc97 Mon Sep 17 00:00:00 2001 From: TsvetanMilanov Date: Tue, 22 Mar 2016 12:38:20 +0200 Subject: [PATCH] Fixed android support repository name Replaced Android Support Repository name with Local Maven repository for Support Libraries. --- lib/android-tools-info.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/android-tools-info.ts b/lib/android-tools-info.ts index 9b2b794cdf..bb5c1f35d2 100644 --- a/lib/android-tools-info.ts +++ b/lib/android-tools-info.ts @@ -128,11 +128,11 @@ export class AndroidToolsInfo implements IAndroidToolsInfo { } if(!toolsInfoData.supportRepositoryVersion) { - let invalidSupportLibAdditionalMsg = 'Run `$ android` to manage the Android Support Repository.'; + let invalidSupportLibAdditionalMsg = 'Run `$ android` to manage the Local Maven repository for Support Libraries.'; if(!isAndroidHomeValid) { invalidSupportLibAdditionalMsg += ' In case you already have it installed, make sure `ANDROID_HOME` environment variable is set correctly.'; } - this.printMessage(`You need to have Android SDK ${AndroidToolsInfo.MIN_REQUIRED_COMPILE_TARGET} or later and the latest Android Support Repository installed on your system.`, invalidSupportLibAdditionalMsg); + this.printMessage(`You need to have Android SDK ${AndroidToolsInfo.MIN_REQUIRED_COMPILE_TARGET} or later and the latest Local Maven repository for Support Libraries installed on your system.`, invalidSupportLibAdditionalMsg); detectedErrors = true; }