resetApp static method
Implementation
static void resetApp(String appName, String bundleId) {
String? old = _getOldBundleId();
if (old == null) {
throw Exception('Bundle ID not exists');
}
_replaceInfoPlist();
_updateXcconfig();
_replaceScheme(appName);
_updateProjectPbxproj(old, bundleId);
}