Back to project page Android-BleEventAdapter.
The source code is released under:
Apache License
If you think the Android project Android-BleEventAdapter 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 com.thedamfr.android.BleEventAdapter.service.gatt; public abstract class GattConnectionState { public static final int STATE_DISCONNECTED = 0; public static final int STATE_CONNECTING = 1 ; public static final int STATE_CONNECTED = 2; }