aaptInit method

Future<bool> aaptInit(
  1. String? aaptPath
)

Implementation

Future<bool> aaptInit(String? aaptPath) async {
  if (aaptPath == null) return false;
  final aapt = File(aaptPath);
  if (await aapt.exists()) {
    _aaptPath = aaptPath;
    return true;
  } else {
    return false;
  }
}