Android 即使在更改 targetSdkVersion 后工作室也无法识别包
Android studio not recognizing a package even after changing targetSdkVersion
我有一个针对目标 sdk 版本 17 的现有 Android Studio 项目。我必须在同一个项目中使用 BluetoothGattCharacteristic 包。此软件包是在 API 级别 18 中引入的。
因此我做了以下事情:
- changed the targetSdkVersion to 18 in the AndroidManifest.xml
- changed the targetSdkVersion to 18 in the build.gradle file.
- downloaded APIs for level 18 from Android SDK Manager.
即使在完成上述操作后,如果我在 class 中使用 'import android.bluetooth.BluetoothGattCharacteristic',我也会收到错误 'Cannot resolve symbol BluetoothGattCharacteristic'.
还有什么我应该做的吗?
将 Compile Sdk 版本更改为 18 并且必须同步 gradle
我有一个针对目标 sdk 版本 17 的现有 Android Studio 项目。我必须在同一个项目中使用 BluetoothGattCharacteristic 包。此软件包是在 API 级别 18 中引入的。 因此我做了以下事情:
- changed the targetSdkVersion to 18 in the AndroidManifest.xml
- changed the targetSdkVersion to 18 in the build.gradle file.
- downloaded APIs for level 18 from Android SDK Manager.
即使在完成上述操作后,如果我在 class 中使用 'import android.bluetooth.BluetoothGattCharacteristic',我也会收到错误 'Cannot resolve symbol BluetoothGattCharacteristic'.
还有什么我应该做的吗?
将 Compile Sdk 版本更改为 18 并且必须同步 gradle