Back to project page AndroidBleLib.
The source code is released under:
MIT License
If you think the Android project AndroidBleLib listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.hearty.ble.lib.data; /* w w w.j a v a2s. com*/ import android.bluetooth.BluetoothDevice; /** * Created by ejf3 on 5/16/14. */ public class DeviceFound { public final BluetoothDevice device; public DeviceFound(BluetoothDevice device) { this.device = device; } }