isAndroidProjectPresent property

bool get isAndroidProjectPresent

Returns true if the android/ directory exists in the project.

Implementation

bool get isAndroidProjectPresent {
  return Directory(p.join(projectRoot, 'android')).existsSync();
}