File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
test/general.shard/android Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ final GradleHandledError multidexErrorHandler = GradleHandledError(
101101 if (multidexEnabled) {
102102 globals.printStatus (
103103 'Multidex support is required for your android app to build since the number of methods has exceeded 64k. '
104+ 'See https://docs.flutter.dev/deployment/android#enabling-multidex-support for more information. '
104105 "You may pass the --no-multidex flag to skip Flutter's multidex support to use a manual solution.\n " ,
105106 indent: 4 ,
106107 );
Original file line number Diff line number Diff line change @@ -361,6 +361,11 @@ Execution failed for task ':app:mergeDexDebug'.
361361 'Multidex support is required for your android app to build since the number of methods has exceeded 64k.'
362362 )
363363 );
364+ expect (testLogger.statusText,
365+ contains (
366+ 'See https://docs.flutter.dev/deployment/android#enabling-multidex-support for more information.'
367+ )
368+ );
364369 expect (testLogger.statusText,
365370 contains (
366371 'Your `android/app/src/main/AndroidManifest.xml` does not contain'
You can’t perform that action at this time.
0 commit comments