blob: a0bbfd9f2c4ef38a0b05ea1522921a5dabda1282 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.android.libs.discovery.ble;
import android.bluetooth.le.BluetoothLeAdvertiser;
import java.util.Map;
import java.util.UUID;
import io.v.v23.discovery.Service;
import io.v.v23.discovery.VAdvertisement;
public class BlePlugin {
private Map<Integer, VAdvertisement> mAdvertisements;
private Map<Integer, VScanner> mScannersById;
private Map<UUID, VScanner> mScannersByServiceId;
private BluetoothLeAdvertiser mBluetoothLeAdvertiser;
private void readvertise() {
}
}