在我的常規版本中,gcm可以正常工作,但是當我使用flavor來更改com名稱時,就會停止工作。我的IntentService永遠不會被初始化。我應該如何設置我的清單文件以便發生這種情況?使用Gradle更改軟件包名稱時,未註冊GCM
- 我已將它們添加到開發者控制檯。
- 我使用gradle這個com.android.tools.build:gradle:0.11.+」
我得到的日誌
V/GCMBroadcastReceiver﹕ onReceive: com.google.android.c2dm.intent.REGISTRATION
V/GCMBroadcastReceiver﹕ GCM IntentService class: com.sample.app.dev.GCMIntentService
V/GCMBaseIntentService﹕ Acquiring wakelock
,然後什麼都沒有。我的自定義IntentService類永遠不會被初始化,並且我的registrationId保持空白。我目前的實現類似於這裏的:https://stackoverflow.com/a/20334397/198034
我應該如何設置我的清單以獲得gradle 0.11。+ flavor以使用gcm?
下面是我的一個風格的清單,我在主清單中有更多的代碼(所有需要的權限等),但沒有其他處理gcm的代碼。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sample.app"
android:versionCode="45"
android:versionName="0.6.5" >
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission android:name="com.sample.app.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.sample.app.permission.C2D_MESSAGE" />
<application
android:allowBackup="true"
android:icon="@drawable/app_icon"
android:label="@string/app_name" >
<service android:name=".GCMIntentService" />
<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="${packageName}" />
</intent-filter>
</receiver>
</application>
</manifest>
請發表您的清單 – Eran
我沒有發佈它,因爲使用我已經嘗試了各種不同的配置,我的清單非常大。但我會加上重要的一點。 – QuinnBaetz