findGradleWrapperProperties static method
Find gradle wrapper properties file
Implementation
static String? findGradleWrapperProperties(String androidDir) {
final wrapperPath = path.join(
androidDir,
'gradle',
'wrapper',
'gradle-wrapper.properties',
);
if (fileExists(wrapperPath)) {
return wrapperPath;
}
return null;
}