11

我有 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 仍然为空),但在清单文件中所有许可都是正确的。

4

2 回答 2

38

Simpy${applicationId}像这样使用别名

<permission android:name=            "${applicationId}.permission.C2D_MESSAGE"
            android:protectionLevel= "signature" />
<uses-permission android:name=       "${applicationId}.permission.C2D_MESSAGE" />
<uses-permission android:name=       "com.google.android.c2dm.permission.RECEIVE" />

而对于相应的接收器使用这个

    <receiver
        android:name = "com.mixpanel.android.mpmetrics.GCMReceiver"
        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 = "${applicationId}"/>
        </intent-filter>
    </receiver>
于 2015-07-02T12:10:20.900 回答
1

我在这篇文章中找到了解决方案GCM not register when changed package name with Gradle。我只是覆盖 BroadcastReceiver,如果有人能解释为什么它有帮助,请告诉我。

于 2014-08-18T12:54:07.110 回答