提交 fba94111 编写于 作者: D DCloud_LXH

fix(App): bluetooth、ibeacon

上级 956af9e4
......@@ -10,79 +10,79 @@ const __uniRoutes = instanceContext.__uniRoutes;
var serviceContext = (function (vue) {
'use strict';
/*
* base64-arraybuffer
* https://github.com/niklasvh/base64-arraybuffer
*
* Copyright (c) 2012 Niklas von Hertzen
* Licensed under the MIT license.
*/
var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
// Use a lookup table to find the index.
var lookup = /*#__PURE__*/ (function () {
const lookup = new Uint8Array(256);
for (var i = 0; i < chars.length; i++) {
lookup[chars.charCodeAt(i)] = i;
}
return lookup
})();
function encode$3(arraybuffer) {
var bytes = new Uint8Array(arraybuffer),
i,
len = bytes.length,
base64 = '';
for (i = 0; i < len; i += 3) {
base64 += chars[bytes[i] >> 2];
base64 += chars[((bytes[i] & 3) << 4) | (bytes[i + 1] >> 4)];
base64 += chars[((bytes[i + 1] & 15) << 2) | (bytes[i + 2] >> 6)];
base64 += chars[bytes[i + 2] & 63];
}
if (len % 3 === 2) {
base64 = base64.substring(0, base64.length - 1) + '=';
} else if (len % 3 === 1) {
base64 = base64.substring(0, base64.length - 2) + '==';
}
return base64
}
function decode$1(base64) {
var bufferLength = base64.length * 0.75,
len = base64.length,
i,
p = 0,
encoded1,
encoded2,
encoded3,
encoded4;
if (base64[base64.length - 1] === '=') {
bufferLength--;
if (base64[base64.length - 2] === '=') {
bufferLength--;
}
}
var arraybuffer = new ArrayBuffer(bufferLength),
bytes = new Uint8Array(arraybuffer);
for (i = 0; i < len; i += 4) {
encoded1 = lookup[base64.charCodeAt(i)];
encoded2 = lookup[base64.charCodeAt(i + 1)];
encoded3 = lookup[base64.charCodeAt(i + 2)];
encoded4 = lookup[base64.charCodeAt(i + 3)];
bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);
bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);
bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);
}
return arraybuffer
/*
* base64-arraybuffer
* https://github.com/niklasvh/base64-arraybuffer
*
* Copyright (c) 2012 Niklas von Hertzen
* Licensed under the MIT license.
*/
var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
// Use a lookup table to find the index.
var lookup = /*#__PURE__*/ (function () {
const lookup = new Uint8Array(256);
for (var i = 0; i < chars.length; i++) {
lookup[chars.charCodeAt(i)] = i;
}
return lookup
})();
function encode$3(arraybuffer) {
var bytes = new Uint8Array(arraybuffer),
i,
len = bytes.length,
base64 = '';
for (i = 0; i < len; i += 3) {
base64 += chars[bytes[i] >> 2];
base64 += chars[((bytes[i] & 3) << 4) | (bytes[i + 1] >> 4)];
base64 += chars[((bytes[i + 1] & 15) << 2) | (bytes[i + 2] >> 6)];
base64 += chars[bytes[i + 2] & 63];
}
if (len % 3 === 2) {
base64 = base64.substring(0, base64.length - 1) + '=';
} else if (len % 3 === 1) {
base64 = base64.substring(0, base64.length - 2) + '==';
}
return base64
}
function decode$1(base64) {
var bufferLength = base64.length * 0.75,
len = base64.length,
i,
p = 0,
encoded1,
encoded2,
encoded3,
encoded4;
if (base64[base64.length - 1] === '=') {
bufferLength--;
if (base64[base64.length - 2] === '=') {
bufferLength--;
}
}
var arraybuffer = new ArrayBuffer(bufferLength),
bytes = new Uint8Array(arraybuffer);
for (i = 0; i < len; i += 4) {
encoded1 = lookup[base64.charCodeAt(i)];
encoded2 = lookup[base64.charCodeAt(i + 1)];
encoded3 = lookup[base64.charCodeAt(i + 2)];
encoded4 = lookup[base64.charCodeAt(i + 3)];
bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);
bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);
bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);
}
return arraybuffer
}
/**
......@@ -6139,28 +6139,28 @@ var serviceContext = (function (vue) {
const onBluetoothAdapterStateChange = defineOnApi(API_ON_BLUETOOTH_ADAPTER_STATE_CHANGE, warpPlusEvent(() => plus.bluetooth.onBluetoothAdapterStateChange, API_ON_BLUETOOTH_ADAPTER_STATE_CHANGE));
const onBLEConnectionStateChange = defineOnApi(API_ON_BLE_CONNECTION_STATE_CHANGE, warpPlusEvent(() => plus.bluetooth.onBLEConnectionStateChange, API_ON_BLE_CONNECTION_STATE_CHANGE));
const onBLECharacteristicValueChange = defineOnApi(API_ON_BLE_CHARACTERISTIC_VALUE_CHANGE, warpPlusEvent(() => plus.bluetooth.onBLECharacteristicValueChange, API_ON_BLE_CHARACTERISTIC_VALUE_CHANGE));
const openBluetoothAdapter = defineAsyncApi('openBluetoothAdapter', warpPlusMethod(() => plus.bluetooth.openBluetoothAdapter));
const closeBluetoothAdapter = defineAsyncApi('closeBluetoothAdapter', warpPlusMethod(() => plus.bluetooth.closeBluetoothAdapter));
const openBluetoothAdapter = defineAsyncApi('openBluetoothAdapter', warpPlusMethod(() => plus.bluetooth.openBluetoothAdapter.bind(plus.bluetooth)));
const closeBluetoothAdapter = defineAsyncApi('closeBluetoothAdapter', warpPlusMethod(() => plus.bluetooth.closeBluetoothAdapter.bind(plus.bluetooth)));
const getBluetoothAdapterState = defineAsyncApi('getBluetoothAdapterState', warpPlusMethod(() => plus.bluetooth.getBluetoothAdapterState));
const startBluetoothDevicesDiscovery = defineAsyncApi(API_START_BLUETOOTH_DEVICES_DISCOVERY, warpPlusMethod(() => plus.bluetooth.startBluetoothDevicesDiscovery), StartBluetoothDevicesDiscoveryProtocol);
const stopBluetoothDevicesDiscovery = defineAsyncApi('stopBluetoothDevicesDiscovery', warpPlusMethod(() => plus.bluetooth.stopBluetoothDevicesDiscovery));
const getBluetoothDevices = defineAsyncApi('getBluetoothDevices', warpPlusMethod(() => plus.bluetooth.getBluetoothDevices));
const startBluetoothDevicesDiscovery = defineAsyncApi(API_START_BLUETOOTH_DEVICES_DISCOVERY, warpPlusMethod(() => plus.bluetooth.startBluetoothDevicesDiscovery.bind(plus.bluetooth)), StartBluetoothDevicesDiscoveryProtocol);
const stopBluetoothDevicesDiscovery = defineAsyncApi('stopBluetoothDevicesDiscovery', warpPlusMethod(() => plus.bluetooth.stopBluetoothDevicesDiscovery.bind(plus.bluetooth)));
const getBluetoothDevices = defineAsyncApi('getBluetoothDevices', warpPlusMethod(() => plus.bluetooth.getBluetoothDevices.bind(plus.bluetooth)));
const getConnectedBluetoothDevices = defineAsyncApi(API_GET_CONNECTED_BLUETOOTH_DEVICES, warpPlusMethod(() => plus.bluetooth.getConnectedBluetoothDevices), GetConnectedBluetoothDevicesProtocol);
const createBLEConnection = defineAsyncApi(API_CREATE_BLE_CONNECTION, warpPlusMethod(() => plus.bluetooth.createBLEConnection), CreateBLEConnectionProtocol);
const closeBLEConnection = defineAsyncApi(API_CLOSE_BLE_CONNECTION, warpPlusMethod(() => plus.bluetooth.closeBLEConnection), CloseBLEConnectionProtocol);
const getBLEDeviceServices = defineAsyncApi(API_GET_BLE_DEVICE_SERVICES, warpPlusMethod(() => plus.bluetooth.getBLEDeviceServices), GetBLEDeviceServicesProtocol);
const getBLEDeviceCharacteristics = defineAsyncApi(API_GET_BLE_DEVICE_CHARACTERISTICS, warpPlusMethod(() => plus.bluetooth.getBLEDeviceCharacteristics), GetBLEDeviceCharacteristicsProtocol);
const notifyBLECharacteristicValueChange = defineAsyncApi(API_NOTIFY_BLE_CHARACTERISTIC_VALUE_CHANGE, warpPlusMethod(() => plus.bluetooth.notifyBLECharacteristicValueChange), NotifyBLECharacteristicValueChangeProtocol);
const readBLECharacteristicValue = defineAsyncApi(API_READ_BLE_CHARACTERISTIC_VALUE, warpPlusMethod(() => plus.bluetooth.readBLECharacteristicValue), ReadBLECharacteristicValueProtocol);
const writeBLECharacteristicValue = defineAsyncApi(API_WRITE_BLE_CHARACTERISTIC_VALUE, warpPlusMethod(() => plus.bluetooth.writeBLECharacteristicValue), WriteBLECharacteristicValueProtocol);
const setBLEMTU = defineAsyncApi(API_SET_BLE_MTU, warpPlusMethod(() => plus.bluetooth.setBLEMTU), SetBLEMTUProtocol);
const getBLEDeviceRSSI = defineAsyncApi(API_GET_BLE_DEVICE_RSSI, warpPlusMethod(() => plus.bluetooth.getBLEDeviceRSSI), GetBLEDeviceRSSIProtocol);
const onBeaconUpdate = defineOnApi(API_ON_BEACON_UPDATE, warpPlusEvent(() => plus.ibeacon.onBeaconUpdate, API_ON_BEACON_UPDATE));
const onBeaconServiceChange = defineOnApi(API_ON_BEACON_SERVICE_CHANGE, warpPlusEvent(() => plus.ibeacon.onBeaconServiceChange, API_ON_BEACON_SERVICE_CHANGE));
const getBeacons = defineAsyncApi(API_GET_BEACONS, warpPlusMethod(() => plus.ibeacon.getBeacons));
const startBeaconDiscovery = defineAsyncApi(API_START_BEACON_DISCOVERY, warpPlusMethod(() => plus.ibeacon.startBeaconDiscovery), StartBeaconDiscoveryProtocol);
const stopBeaconDiscovery = defineAsyncApi(API_STOP_BEACON_DISCOVERY, warpPlusMethod(() => plus.ibeacon.stopBeaconDiscovery));
const createBLEConnection = defineAsyncApi(API_CREATE_BLE_CONNECTION, warpPlusMethod(() => plus.bluetooth.createBLEConnection.bind(plus.bluetooth)), CreateBLEConnectionProtocol);
const closeBLEConnection = defineAsyncApi(API_CLOSE_BLE_CONNECTION, warpPlusMethod(() => plus.bluetooth.closeBLEConnection.bind(plus.bluetooth)), CloseBLEConnectionProtocol);
const getBLEDeviceServices = defineAsyncApi(API_GET_BLE_DEVICE_SERVICES, warpPlusMethod(() => plus.bluetooth.getBLEDeviceServices.bind(plus.bluetooth)), GetBLEDeviceServicesProtocol);
const getBLEDeviceCharacteristics = defineAsyncApi(API_GET_BLE_DEVICE_CHARACTERISTICS, warpPlusMethod(() => plus.bluetooth.getBLEDeviceCharacteristics.bind(plus.bluetooth)), GetBLEDeviceCharacteristicsProtocol);
const notifyBLECharacteristicValueChange = defineAsyncApi(API_NOTIFY_BLE_CHARACTERISTIC_VALUE_CHANGE, warpPlusMethod(() => plus.bluetooth.notifyBLECharacteristicValueChange.bind(plus.bluetooth)), NotifyBLECharacteristicValueChangeProtocol);
const readBLECharacteristicValue = defineAsyncApi(API_READ_BLE_CHARACTERISTIC_VALUE, warpPlusMethod(() => plus.bluetooth.readBLECharacteristicValue.bind(plus.bluetooth)), ReadBLECharacteristicValueProtocol);
const writeBLECharacteristicValue = defineAsyncApi(API_WRITE_BLE_CHARACTERISTIC_VALUE, warpPlusMethod(() => plus.bluetooth.writeBLECharacteristicValue.bind(plus.bluetooth)), WriteBLECharacteristicValueProtocol);
const setBLEMTU = defineAsyncApi(API_SET_BLE_MTU, warpPlusMethod(() => plus.bluetooth.setBLEMTU.bind(plus.bluetooth)), SetBLEMTUProtocol);
const getBLEDeviceRSSI = defineAsyncApi(API_GET_BLE_DEVICE_RSSI, warpPlusMethod(() => plus.bluetooth.getBLEDeviceRSSI.bind(plus.bluetooth)), GetBLEDeviceRSSIProtocol);
const onBeaconUpdate = defineOnApi(API_ON_BEACON_UPDATE, warpPlusEvent(() => plus.ibeacon.onBeaconUpdate.bind(plus.ibeacon), API_ON_BEACON_UPDATE));
const onBeaconServiceChange = defineOnApi(API_ON_BEACON_SERVICE_CHANGE, warpPlusEvent(() => plus.ibeacon.onBeaconServiceChange.bind(plus.ibeacon), API_ON_BEACON_SERVICE_CHANGE));
const getBeacons = defineAsyncApi(API_GET_BEACONS, warpPlusMethod(() => plus.ibeacon.getBeacons.bind(plus.ibeacon)));
const startBeaconDiscovery = defineAsyncApi(API_START_BEACON_DISCOVERY, warpPlusMethod(() => plus.ibeacon.startBeaconDiscovery.bind(plus.ibeacon)), StartBeaconDiscoveryProtocol);
const stopBeaconDiscovery = defineAsyncApi(API_STOP_BEACON_DISCOVERY, warpPlusMethod(() => plus.ibeacon.stopBeaconDiscovery.bind(plus.ibeacon)));
const makePhoneCall = defineAsyncApi(API_MAKE_PHONE_CALL, ({ phoneNumber }, { resolve }) => {
plus.device.dial(phoneNumber);
......
......@@ -49,7 +49,7 @@ export const onBluetoothDeviceFound =
defineOnApi<API_TYPE_ON_BLUETOOTH_DEVICE_FOUND>(
API_ON_BLUETOOTH_DEVICE_FOUND,
warpPlusEvent(
() => plus.bluetooth.onBluetoothDeviceFound,
() => plus.bluetooth.onBluetoothDeviceFound.bind(plus.bluetooth),
API_ON_BLUETOOTH_DEVICE_FOUND
)
)
......@@ -57,7 +57,7 @@ export const onBluetoothAdapterStateChange =
defineOnApi<API_TYPE_ON_BLUETOOTH_ADAPTER_STATE_CHANGE>(
API_ON_BLUETOOTH_ADAPTER_STATE_CHANGE,
warpPlusEvent(
() => plus.bluetooth.onBluetoothAdapterStateChange,
() => plus.bluetooth.onBluetoothAdapterStateChange.bind(plus.bluetooth),
API_ON_BLUETOOTH_ADAPTER_STATE_CHANGE
)
)
......@@ -65,7 +65,7 @@ export const onBLEConnectionStateChange =
defineOnApi<API_TYPE_ON_BLE_CONNECTION_STATE_CHANGE>(
API_ON_BLE_CONNECTION_STATE_CHANGE,
warpPlusEvent(
() => plus.bluetooth.onBLEConnectionStateChange,
() => plus.bluetooth.onBLEConnectionStateChange.bind(plus.bluetooth),
API_ON_BLE_CONNECTION_STATE_CHANGE
)
)
......@@ -73,7 +73,7 @@ export const onBLECharacteristicValueChange =
defineOnApi<API_TYPE_ON_BLE_CHARACTERISTIC_VALUE_CHANGE>(
API_ON_BLE_CHARACTERISTIC_VALUE_CHANGE,
warpPlusEvent(
() => plus.bluetooth.onBLECharacteristicValueChange,
() => plus.bluetooth.onBLECharacteristicValueChange.bind(plus.bluetooth),
API_ON_BLE_CHARACTERISTIC_VALUE_CHANGE
)
)
......@@ -82,13 +82,15 @@ export const openBluetoothAdapter = defineAsyncApi<
typeof uni.openBluetoothAdapter
>(
'openBluetoothAdapter',
warpPlusMethod(() => plus.bluetooth.openBluetoothAdapter)
warpPlusMethod(() => plus.bluetooth.openBluetoothAdapter.bind(plus.bluetooth))
)
export const closeBluetoothAdapter = defineAsyncApi<
typeof uni.closeBluetoothAdapter
>(
'closeBluetoothAdapter',
warpPlusMethod(() => plus.bluetooth.closeBluetoothAdapter)
warpPlusMethod(() =>
plus.bluetooth.closeBluetoothAdapter.bind(plus.bluetooth)
)
)
export const getBluetoothAdapterState = defineAsyncApi<
typeof uni.getBluetoothAdapterState
......@@ -99,20 +101,24 @@ export const getBluetoothAdapterState = defineAsyncApi<
export const startBluetoothDevicesDiscovery =
defineAsyncApi<API_TYPE_START_BLUETOOTH_DEVICES_DISCOVERY>(
API_START_BLUETOOTH_DEVICES_DISCOVERY,
warpPlusMethod(() => plus.bluetooth.startBluetoothDevicesDiscovery),
warpPlusMethod(() =>
plus.bluetooth.startBluetoothDevicesDiscovery.bind(plus.bluetooth)
),
StartBluetoothDevicesDiscoveryProtocol
)
export const stopBluetoothDevicesDiscovery = defineAsyncApi<
typeof uni.stopBluetoothDevicesDiscovery
>(
'stopBluetoothDevicesDiscovery',
warpPlusMethod(() => plus.bluetooth.stopBluetoothDevicesDiscovery)
warpPlusMethod(() =>
plus.bluetooth.stopBluetoothDevicesDiscovery.bind(plus.bluetooth)
)
)
export const getBluetoothDevices = defineAsyncApi<
typeof uni.getBluetoothDevices
>(
'getBluetoothDevices',
warpPlusMethod(() => plus.bluetooth.getBluetoothDevices)
warpPlusMethod(() => plus.bluetooth.getBluetoothDevices.bind(plus.bluetooth))
)
export const getConnectedBluetoothDevices =
defineAsyncApi<API_TYPE_GET_CONNECTED_BLUETOOTH_DEVICES>(
......@@ -123,51 +129,63 @@ export const getConnectedBluetoothDevices =
export const createBLEConnection =
defineAsyncApi<API_TYPE_CREATE_BLE_CONNECTION>(
API_CREATE_BLE_CONNECTION,
warpPlusMethod(() => plus.bluetooth.createBLEConnection),
warpPlusMethod(() =>
plus.bluetooth.createBLEConnection.bind(plus.bluetooth)
),
CreateBLEConnectionProtocol
)
export const closeBLEConnection = defineAsyncApi<API_TYPE_CLOSE_BLE_CONNECTION>(
API_CLOSE_BLE_CONNECTION,
warpPlusMethod(() => plus.bluetooth.closeBLEConnection),
warpPlusMethod(() => plus.bluetooth.closeBLEConnection.bind(plus.bluetooth)),
CloseBLEConnectionProtocol
)
export const getBLEDeviceServices =
defineAsyncApi<API_TYPE_GET_BLE_DEVICE_SERVICES>(
API_GET_BLE_DEVICE_SERVICES,
warpPlusMethod(() => plus.bluetooth.getBLEDeviceServices),
warpPlusMethod(() =>
plus.bluetooth.getBLEDeviceServices.bind(plus.bluetooth)
),
GetBLEDeviceServicesProtocol
)
export const getBLEDeviceCharacteristics =
defineAsyncApi<API_TYPE_GET_BLE_DEVICE_CHARACTERISTICS>(
API_GET_BLE_DEVICE_CHARACTERISTICS,
warpPlusMethod(() => plus.bluetooth.getBLEDeviceCharacteristics),
warpPlusMethod(() =>
plus.bluetooth.getBLEDeviceCharacteristics.bind(plus.bluetooth)
),
GetBLEDeviceCharacteristicsProtocol
)
export const notifyBLECharacteristicValueChange =
defineAsyncApi<API_TYPE_NOTIFY_BLE_CHARACTERISTIC_VALUE_CHANGE>(
API_NOTIFY_BLE_CHARACTERISTIC_VALUE_CHANGE,
warpPlusMethod(() => plus.bluetooth.notifyBLECharacteristicValueChange),
warpPlusMethod(() =>
plus.bluetooth.notifyBLECharacteristicValueChange.bind(plus.bluetooth)
),
NotifyBLECharacteristicValueChangeProtocol
)
export const readBLECharacteristicValue =
defineAsyncApi<API_TYPE_READ_BLE_CHARACTERISTIC_VALUE>(
API_READ_BLE_CHARACTERISTIC_VALUE,
warpPlusMethod(() => plus.bluetooth.readBLECharacteristicValue),
warpPlusMethod(() =>
plus.bluetooth.readBLECharacteristicValue.bind(plus.bluetooth)
),
ReadBLECharacteristicValueProtocol
)
export const writeBLECharacteristicValue =
defineAsyncApi<API_TYPE_WRITE_BLE_CHARACTERISTIC_VALUE>(
API_WRITE_BLE_CHARACTERISTIC_VALUE,
warpPlusMethod(() => plus.bluetooth.writeBLECharacteristicValue),
warpPlusMethod(() =>
plus.bluetooth.writeBLECharacteristicValue.bind(plus.bluetooth)
),
WriteBLECharacteristicValueProtocol
)
export const setBLEMTU = defineAsyncApi<API_TYPE_SET_BLE_MTU>(
API_SET_BLE_MTU,
warpPlusMethod(() => plus.bluetooth.setBLEMTU),
warpPlusMethod(() => plus.bluetooth.setBLEMTU.bind(plus.bluetooth)),
SetBLEMTUProtocol
)
export const getBLEDeviceRSSI = defineAsyncApi<API_TYPE_GET_BLE_DEVICE_RSSI>(
API_GET_BLE_DEVICE_RSSI,
warpPlusMethod(() => plus.bluetooth.getBLEDeviceRSSI),
warpPlusMethod(() => plus.bluetooth.getBLEDeviceRSSI.bind(plus.bluetooth)),
GetBLEDeviceRSSIProtocol
)
......@@ -17,29 +17,32 @@ import { warpPlusEvent, warpPlusMethod } from '../../../helpers/plus'
export const onBeaconUpdate = defineOnApi<API_TYPE_ON_BEACON_UPDATE>(
API_ON_BEACON_UPDATE,
warpPlusEvent(() => plus.ibeacon.onBeaconUpdate, API_ON_BEACON_UPDATE)
warpPlusEvent(
() => plus.ibeacon.onBeaconUpdate.bind(plus.ibeacon),
API_ON_BEACON_UPDATE
)
)
export const onBeaconServiceChange =
defineOnApi<API_TYPE_ON_BEACON_SERVICE_CHANGE>(
API_ON_BEACON_SERVICE_CHANGE,
warpPlusEvent(
() => plus.ibeacon.onBeaconServiceChange,
() => plus.ibeacon.onBeaconServiceChange.bind(plus.ibeacon),
API_ON_BEACON_SERVICE_CHANGE
)
)
export const getBeacons = defineAsyncApi<API_TYPE_GET_BEACONS>(
API_GET_BEACONS,
warpPlusMethod(() => plus.ibeacon.getBeacons)
warpPlusMethod(() => plus.ibeacon.getBeacons.bind(plus.ibeacon))
)
export const startBeaconDiscovery =
defineAsyncApi<API_TYPE_START_BEACON_DISCOVERY>(
API_START_BEACON_DISCOVERY,
warpPlusMethod(() => plus.ibeacon.startBeaconDiscovery),
warpPlusMethod(() => plus.ibeacon.startBeaconDiscovery.bind(plus.ibeacon)),
StartBeaconDiscoveryProtocol
)
export const stopBeaconDiscovery =
defineAsyncApi<API_TYPE_STOP_BEACON_DISCOVERY>(
API_STOP_BEACON_DISCOVERY,
warpPlusMethod(() => plus.ibeacon.stopBeaconDiscovery)
warpPlusMethod(() => plus.ibeacon.stopBeaconDiscovery.bind(plus.ibeacon))
)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册