Unverified Commit bd472621 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] fix period in URL for androidX incompat (#57182)

parent a8014967
...@@ -245,7 +245,7 @@ Future<void> buildGradleApp({ ...@@ -245,7 +245,7 @@ Future<void> buildGradleApp({
globals.printStatus("$warningMark Your app isn't using AndroidX.", emphasis: true); globals.printStatus("$warningMark Your app isn't using AndroidX.", emphasis: true);
globals.printStatus( globals.printStatus(
'To avoid potential build failures, you can quickly migrate your app ' 'To avoid potential build failures, you can quickly migrate your app '
'by following the steps on https://goo.gl/CP92wY.', 'by following the steps on https://goo.gl/CP92wY .',
indent: 4, indent: 4,
); );
} }
......
...@@ -191,7 +191,7 @@ final GradleHandledError androidXFailureHandler = GradleHandledError( ...@@ -191,7 +191,7 @@ final GradleHandledError androidXFailureHandler = GradleHandledError(
// a plugin already migrated to AndroidX. // a plugin already migrated to AndroidX.
globals.printStatus( globals.printStatus(
'AndroidX incompatibilities may have caused this build to fail. ' 'AndroidX incompatibilities may have caused this build to fail. '
'Please migrate your app to AndroidX. See https://goo.gl/CP92wY.' 'Please migrate your app to AndroidX. See https://goo.gl/CP92wY .'
); );
BuildEvent( BuildEvent(
'gradle-android-x-failure', 'gradle-android-x-failure',
......
...@@ -321,7 +321,7 @@ Command: /home/android/gradlew assembleRelease ...@@ -321,7 +321,7 @@ Command: /home/android/gradlew assembleRelease
expect(testLogger.statusText, expect(testLogger.statusText,
contains( contains(
'AndroidX incompatibilities may have caused this build to fail. ' 'AndroidX incompatibilities may have caused this build to fail. '
'Please migrate your app to AndroidX. See https://goo.gl/CP92wY.' 'Please migrate your app to AndroidX. See https://goo.gl/CP92wY .'
) )
); );
verify(mockUsage.sendEvent( verify(mockUsage.sendEvent(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment