You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm submitting a ... (check one with "x")
[ x ] bug report
[ ] feature request
Current behavior:
Calling startAdvertising requires the measuredPower parameter to be set.
Expected behavior:
measuredPower should be an optional parameter to startAdvertising to match description and CLLocationManager code for cordova plugin petermetz/cordova-plugin-ibeacon
* @param {Integer} measuredPower: Optional parameter, if left empty, the device will
* use it's own default value.
CDVLocationManager.m =
BOOL measuredPowerSpecifiedByUser = command.arguments.count > 1;
NSNumber *measuredPower = nil;
if (measuredPowerSpecifiedByUser) {
measuredPower = [command.arguments objectAtIndex: 1];
[[self getLogger] debugLog:@"Custom measuredPower specified by caller: %@", measuredPower];
} else {
[[self getLogger] debugLog:@"[Default measuredPower will be used."];
}
Steps to reproduce: IBeacon.startAdvertising(region) // ts: Supplied parameters do not match any signature of call target.
I'm submitting a ... (check one with "x")
[ x ] bug report
[ ] feature request
Current behavior:
Calling startAdvertising requires the measuredPower parameter to be set.
Expected behavior:
measuredPower should be an optional parameter to startAdvertising to match description and CLLocationManager code for cordova plugin petermetz/cordova-plugin-ibeacon
CDVLocationManager.m =
Steps to reproduce:
IBeacon.startAdvertising(region) // ts: Supplied parameters do not match any signature of call target.
Other information:
package.json info:
The text was updated successfully, but these errors were encountered: