我无法将com.google.android.gms.iid.InstanceID导入到我的代码中,这是一个库问题,还是我需要更新库,因为instanceID可用,而且很多都使用相同的方法实现。
答案 0 :(得分:3)
我也有这个问题,结果是我有一个旧版本的android sdk工具。从开发者网站获取最新版本并再次安装Google Play服务库解决了这个问题。
答案 1 :(得分:1)
我也有同样的问题。通过使用最新的sdk工具版本进行编译来解决它。(播放服务,构建工具等)。示例build.gradle如下所示,以供参考。
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.abc.bcd"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:appcompat-v7:23.0.1'
}
在这里输入代码