我使用Eclipse Luna,结果我有一堆import *无法解决错误。
import android.bluetooth.BluetoothGatt;
import android.bluetooth.BluetoothGattCallback;
import android.bluetooth.BluetoothGattCharacteristic;
import android.bluetooth.BluetoothGattDescriptor;
import android.bluetooth.BluetoothGattService;
import android.bluetooth.BluetoothManager;
我清理了项目,我将其删除并导入但我有同样的错误。
答案 0 :(得分:0)
BluetoothGatt
和其他Bluetooth GATT Profile apis
仅在Api Level 18
中添加。
所以在项目属性中 - > Android - >项目构建目标,选择目标大于18。
或者只是将project.properties编辑为类似
的内容target=android-20