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

This is the first step in getting esoteric devices wired up to device lab to ensure that we can at least start Flutter apps in profile mode on such devices. https://github.com/flutter/flutter/issues/35838
15 lines
495 B
Dart
15 lines
495 B
Dart
// Copyright 2016 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:async';
|
|
|
|
import 'package:flutter_devicelab/tasks/perf_tests.dart';
|
|
import 'package:flutter_devicelab/framework/adb.dart';
|
|
import 'package:flutter_devicelab/framework/framework.dart';
|
|
|
|
Future<void> main() async {
|
|
deviceOperatingSystem = DeviceOperatingSystem.android;
|
|
await task(createHelloWorldStartupTest());
|
|
}
|