checkManifestWithAndroid method

Future<bool> checkManifestWithAndroid()

检查集成结果 仅支持Android

Implementation

Future<bool> checkManifestWithAndroid() async {
  if (!_isAndroid) return false;
  final bool? state = await _channel.invokeMethod<bool?>('checkManifest');
  return state ?? false;
}