mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Move Flutter Gallery to dev/integration_tests/ as it is an older copy used only for testing. The current version of the Flutter Gallery now lives in https://github.com/flutter/gallery.
20 lines
561 B
Bash
Executable File
20 lines
561 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2014 The Flutter Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
set -e
|
|
|
|
if [ ! -f "./pubspec.yaml" ]; then
|
|
echo "ERROR: current directory must be the root of flutter_gallery package"
|
|
exit 1
|
|
fi
|
|
|
|
cd android
|
|
|
|
# Currently there's no non-hacky way to pass a device ID to gradlew, but it's
|
|
# OK as in the devicelab we have one device per host.
|
|
#
|
|
# See also: https://goo.gl/oe5aUW
|
|
./gradlew connectedAndroidTest -Ptarget=test/live_smoketest.dart
|