Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit eb144ae

Browse files
committed
fix some more gradle paths
1 parent 9c57da6 commit eb144ae

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

testing/run_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,8 @@ def run_java_tests(executable_filter, android_variant='android_debug_unopt'):
707707
BUILDROOT_DIR, 'flutter', 'shell', 'platform', 'android', 'test_runner'
708708
)
709709
gradle_bin = os.path.join(
710-
BUILDROOT_DIR, 'third_party', 'gradle', 'bin', 'gradle.bat' if is_windows() else 'gradle'
710+
BUILDROOT_DIR, 'flutter', 'third_party', 'gradle', 'bin',
711+
'gradle.bat' if is_windows() else 'gradle'
711712
)
712713
flutter_jar = os.path.join(OUT_DIR, android_variant, 'flutter.jar')
713714
android_home = os.path.join(BUILDROOT_DIR, 'flutter', 'third_party', 'android_tools', 'sdk')

testing/scenario_app/android/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ update it, run:
378378
379379
```sh
380380
cd testing/scenario_app/android
381-
$ENGINE_SRC/third_party/gradle/bin/gradle app:dependencies --write-locks
381+
$ENGINE_SRC/flutter/third_party/gradle/bin/gradle app:dependencies --write-locks
382382
```
383383
384384
## Getting Help

0 commit comments

Comments
 (0)