次のコードを使用してデバイスをGCMに登録しようとしています。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
GCMRegistrar.checkDevice(this);
// the following function can be removed when deploying the app
GCMRegistrar.checkManifest(this);
final String regId = GCMRegistrar.getRegistrationId(this);
if (regId.equals("")) {
GCMRegistrar.register(this, SENDER_ID);
} else {
Log.v(TAG, "Already registered");
}
importcom.google.android.gcm.GCMRegistrarをインポートしました。
また、SDKのダウンロードで取得したEclipseのビルドパスにGCM.jarを追加しました
助けてください !