が、私は受信機のようになりますマニフェストファイルNotification.In GCMプッシュを実装する必要があります代わりに、パッケージ名を指定するための任意の代替名が以下です:私はGCMBroadcastReceiverからカテゴリ名を削除できますか私のアプリケーションで
<receiver android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<!-- Receives the actual messages. -->
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<!-- Receives the registration id. -->
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.companyname.project" />
</intent-filter>
</receiver>
カテゴリ名からパッケージ名を削除します。それは可能であるか、またはカテゴリ名として与えられる代替値があるかどうか。
なぜあなたはそれをやりたいのですか? – Budius
パッケージ名を削除します。 – Julie