renderManifestOutput function

String renderManifestOutput(
  1. NativePrebuiltConfig config,
  2. PrebuiltManifest manifest,
  3. String tag,
  4. String outputPath,
)

Implementation

String renderManifestOutput(
  NativePrebuiltConfig config,
  PrebuiltManifest manifest,
  String tag,
  String outputPath,
) {
  return isLockManifestOutput(outputPath)
      ? renderLockManifest(manifest)
      : renderManifest(config, manifest, tag);
}