# frozen_string_literal: true module GoNative module Commands module IOS class SetBundleId < Base desc 'Sets bundle Id ' argument :bundle_id, required: true, desc: 'Bundle id for the app' option :with_entitlements, type: :boolean, default: false def call(bundle_id:, with_entitlements:, **) Plugins::IOS::SetBundleId.call(bundle_id, with_entitlements) end end end end end