@@ -102,15 +102,15 @@ class UserMessages {
102102 'Unable to locate Android SDK.\n '
103103 'Install Android Studio from: https://developer.android.com/studio/index.html\n '
104104 'On first launch it will assist you in installing the Android SDK components.\n '
105- '(or visit ${_androidSdkInstallUrl (platform )} for detailed instructions).\n '
105+ '(or visit ${androidSdkInstallUrl (platform )} for detailed instructions).\n '
106106 'If the Android SDK has been installed to a custom location, please use\n '
107107 '`flutter config --android-sdk` to update to that location.\n ' ;
108108 String androidSdkLocation (String directory) => 'Android SDK at $directory ' ;
109109 String androidSdkPlatformToolsVersion (String platform, String tools) =>
110110 'Platform $platform , build-tools $tools ' ;
111111 String androidSdkInstallHelp (Platform platform) =>
112112 'Try re-installing or updating your Android SDK,\n '
113- 'visit ${_androidSdkInstallUrl (platform )} for detailed instructions.' ;
113+ 'visit ${androidSdkInstallUrl (platform )} for detailed instructions.' ;
114114 // Also occurs in AndroidLicenseValidator
115115 String androidStatusInfo (String version) => 'Android SDK version $version ' ;
116116
@@ -126,7 +126,7 @@ class UserMessages {
126126 String androidLicensesUnknown (Platform platform) =>
127127 'Android license status unknown.\n '
128128 'Run `flutter doctor --android-licenses` to accept the SDK licenses.\n '
129- 'See ${_androidSdkInstallUrl (platform )} for more details.' ;
129+ 'See ${androidSdkInstallUrl (platform )} for more details.' ;
130130 String androidSdkManagerOutdated (String managerPath) =>
131131 'A newer version of the Android SDK is required. To update, run:\n '
132132 '$managerPath --update\n ' ;
@@ -135,14 +135,14 @@ class UserMessages {
135135 String androidMissingSdkManager (String sdkManagerPath, Platform platform) =>
136136 'Android sdkmanager tool not found ($sdkManagerPath ).\n '
137137 'Try re-installing or updating your Android SDK,\n '
138- 'visit ${_androidSdkInstallUrl (platform )} for detailed instructions.' ;
138+ 'visit ${androidSdkInstallUrl (platform )} for detailed instructions.' ;
139139 String androidCannotRunSdkManager (String sdkManagerPath, String error, Platform platform) =>
140140 'Android sdkmanager tool was found, but failed to run ($sdkManagerPath ): "$error ".\n '
141141 'Try re-installing or updating your Android SDK,\n '
142- 'visit ${_androidSdkInstallUrl (platform )} for detailed instructions.' ;
142+ 'visit ${androidSdkInstallUrl (platform )} for detailed instructions.' ;
143143 String androidSdkBuildToolsOutdated (int sdkMinVersion, String buildToolsMinVersion, Platform platform) =>
144144 'Flutter requires Android SDK $sdkMinVersion and the Android BuildTools $buildToolsMinVersion \n '
145- 'To update the Android SDK visit ${_androidSdkInstallUrl (platform )} for detailed instructions.' ;
145+ 'To update the Android SDK visit ${androidSdkInstallUrl (platform )} for detailed instructions.' ;
146146 String get androidMissingCmdTools => 'cmdline-tools component is missing\n '
147147 'Run `path/to/sdkmanager --install "cmdline-tools;latest"`\n '
148148 'See https://developer.android.com/studio/command-line for more details.' ;
@@ -163,7 +163,7 @@ class UserMessages {
163163 'but Android Studio not found at this location.' ;
164164 String androidStudioInstallation (Platform platform) =>
165165 'Android Studio not found; download from https://developer.android.com/studio/index.html\n '
166- '(or visit ${_androidSdkInstallUrl (platform )} for detailed instructions).' ;
166+ '(or visit ${androidSdkInstallUrl (platform )} for detailed instructions).' ;
167167
168168 // Messages used in XcodeValidator
169169 String xcodeLocation (String location) => 'Xcode at $location ' ;
@@ -351,7 +351,7 @@ class UserMessages {
351351 'Read more about iOS versioning at\n '
352352 'https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html\n ' ;
353353
354- String _androidSdkInstallUrl (Platform platform) {
354+ String androidSdkInstallUrl (Platform platform) {
355355 const String baseUrl = 'https://flutter.dev/docs/get-started/install' ;
356356 const String fragment = '#android-setup' ;
357357 if (platform.isMacOS) {
0 commit comments