setManufacturerId method

BeaconBroadcast setManufacturerId(
  1. int manufacturerId
)

Sets manufacturer id.

This parameter is Android only. It's optional, the default is Radius Network. For more information you can check the full list of Company Identifiers.

For iOS, the manufacturer will be always Apple.

Implementation

BeaconBroadcast setManufacturerId(int manufacturerId) {
  _manufacturerId = manufacturerId;
  return this;
}