我有 GCM 示例 android gradle 项目。它运行良好,当我添加 2 种口味时,推送通知停止工作。我的编译清单(取自app\build\intermediates\manifests\ex\debug
)文件如下:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.flavor.app"
<uses-permission android:name="com.flavor.app.permission.C2D_MESSAGE" />
<permission
android:name="com.flavor.app.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.flavor.app" />
</intent-filter>
</receiver>
<service android:name="com.ex.app.GCMIntentService" />
<service
android:name="com.ex.app.AppLocationService"
class=".AppLocationService" >
<intent-filter>
<action
android:name=".AppLocationService"
android:value=".AppLocationService" />
</intent-filter>
</service>
我应该怎么做才能解决这个问题?请帮忙。
UPD1。我正在使用 gradle v.0.12+。我认为我的最终清单文件看起来不错,GCMRegistrar.checkManifest(this); - 没有错误,但 GCMRegistrar.isRegistered(this) 总是错误的。=(
UPD2。我的第一个具有原始包名称的风味项目(作为主分支中的项目)运行良好,但具有更改包的第二种风味不起作用(push 的registrationId 仍然为空),但在清单文件中所有许可都是正确的。