我正在尝试在我的应用中实施 GCM客户端 我关注this文章 一切都很好,直到我尝试这一部分:
if (checkPlayServices()) {
gcm = GoogleCloudMessaging.getInstance(this);
regid = getRegistrationId(context);
if (regid.isEmpty()) {
registerInBackground();
}
} else {
Log.i(TAG, "No valid Google Play Services APK found.");
}
我的问题是我无法找到 GoogleCloudMessaging 类来导入它!
它是我导入部分的屏幕截图:
当我尝试重建我的项目时,我收到此错误:
java: cannot find symbol
symbol: variable GoogleCloudMessaging
location: class com.example.app.activity.HomeGroupActivity
我将google-play-services库添加到我的项目中并用于g +共享,我没有遇到任何问题。