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

* Remove legacy .apk build. Print out an error message telling the user to upgrade the project if it's not Gradle-based. Removed all the obvious traces of the legacy build. Added support for Dart VM kernel snapshots in Gradle builds. Fixed Android installs to verify that the app is actually installed, and not just rely on the presence of the .sha1 file.
102 lines
2.2 KiB
Dart
102 lines
2.2 KiB
Dart
// Copyright 2017 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 '../application_package.dart';
|
|
import '../build_info.dart';
|
|
import '../device.dart';
|
|
|
|
/// Read the log for a particular device.
|
|
class _FuchsiaLogReader extends DeviceLogReader {
|
|
FuchsiaDevice _device;
|
|
|
|
_FuchsiaLogReader(this._device);
|
|
|
|
@override String get name => _device.name;
|
|
|
|
Stream<String> _logLines;
|
|
@override
|
|
Stream<String> get logLines {
|
|
_logLines ??= new Stream<String>.empty();
|
|
return _logLines;
|
|
}
|
|
|
|
@override
|
|
String toString() => name;
|
|
}
|
|
|
|
class FuchsiaDevice extends Device {
|
|
FuchsiaDevice(String id, { this.name }) : super(id);
|
|
|
|
@override
|
|
bool get supportsHotMode => true;
|
|
|
|
@override
|
|
final String name;
|
|
|
|
@override
|
|
bool get isLocalEmulator => false;
|
|
|
|
@override
|
|
bool get supportsStartPaused => false;
|
|
|
|
@override
|
|
bool isAppInstalled(ApplicationPackage app) => false;
|
|
|
|
@override
|
|
bool isLatestBuildInstalled(ApplicationPackage app) => false;
|
|
|
|
@override
|
|
bool installApp(ApplicationPackage app) => false;
|
|
|
|
@override
|
|
bool uninstallApp(ApplicationPackage app) => false;
|
|
|
|
@override
|
|
bool isSupported() => true;
|
|
|
|
@override
|
|
Future<LaunchResult> startApp(
|
|
ApplicationPackage app,
|
|
BuildMode mode, {
|
|
String mainPath,
|
|
String route,
|
|
DebuggingOptions debuggingOptions,
|
|
Map<String, dynamic> platformArgs,
|
|
bool prebuiltApplication: false,
|
|
String kernelPath,
|
|
bool applicationNeedsRebuild: false,
|
|
}) => new Future<Null>.error('unimplemented');
|
|
|
|
@override
|
|
Future<bool> stopApp(ApplicationPackage app) async {
|
|
// Currently we don't have a way to stop an app running on Fuchsia.
|
|
return false;
|
|
}
|
|
|
|
@override
|
|
TargetPlatform get targetPlatform => TargetPlatform.fuchsia;
|
|
|
|
@override
|
|
String get sdkNameAndVersion => 'Fuchsia';
|
|
|
|
_FuchsiaLogReader _logReader;
|
|
@override
|
|
DeviceLogReader getLogReader({ApplicationPackage app}) {
|
|
_logReader ??= new _FuchsiaLogReader(this);
|
|
return _logReader;
|
|
}
|
|
|
|
@override
|
|
DevicePortForwarder get portForwarder => null;
|
|
|
|
@override
|
|
void clearLogs() {
|
|
}
|
|
|
|
@override
|
|
bool get supportsScreenshot => false;
|
|
}
|