Commit 400a62d1 authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Eliminate use of ideviceinfo in flutter_tools (#10804)

This libimobiledevice tool is no longer used anywhere in the flutter_tools codebase.
parent 1d9f0095
......@@ -70,13 +70,6 @@ class IMobileDevice {
return await exitsHappyAsync(<String>['idevicename']);
}
/// Returns the value associated with the specified `ideviceinfo` key for a device.
///
/// If either the specified key or device does not exist, returns the empty string.
String getInfoForDevice(String deviceID, String key) {
return runSync(<String>['ideviceinfo', '-k', key, '-u', deviceID]).trim();
}
/// Starts `idevicesyslog` and returns the running process.
Future<Process> startLogger() => runCommand(<String>['idevicesyslog']);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment