resetApp static method

void resetApp(
  1. String appName,
  2. String bundleId
)

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);
}