extractProjectInfo function
Extract all project information
Implementation
Future<ProjectInfo> extractProjectInfo() async {
print(
'${ColorsText.blue}🔍 Extracting project information...${ColorsText.reset}\n');
final info = ProjectInfo(
androidPackageName: await extractAndroidPackageName(),
iosBundleId: await extractIosBundleId(),
iosTeamId: await extractIosTeamId(),
debugSha256: await extractDebugSha256(),
);
return info;
}