aaptInit method
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;
}
}