resolvedAppId property

String resolvedAppId

Returns the platform-dependent unique identifier of the app under test.

Implementation

String get resolvedAppId {
  if (io.Platform.isAndroid) {
    return _config.packageName;
  } else if (io.Platform.isIOS) {
    return _config.bundleId;
  }

  throw StateError('unsupported platform');
}