Android设备无法接收谷歌播放游戏通知的可能原因?

时间:2014-04-21 03:17:29

标签: android android-notifications google-play-games

关于TBMP Skeleton: Why are both onTurnBasedMatchReceived and onInvitationReceived not called on my physical device?

最初我认为这个问题与我的代码有关,即使它没有任何意义,因为它在我的模拟器上工作得很好+它与tbmp骨架样本中的非常相似。

现在我肯定认为问题出在我的设备上,所以我想知道什么可能阻止来自Google Play游戏的通知。

在我的模拟器中,我在通知栏中收到了来自Google Play游戏的大量通知,但物理设备中没有任何内容。 该设备是Xperia L 4.2.2。

编辑: 是的,选中了Google Play服务通知复选框。 这是我的清单:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="PACKAGE_NAME"
        android:versionCode="1"
        android:versionName="1.0" >

        <uses-sdk
            android:minSdkVersion="14"
            android:targetSdkVersion="19" />

        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <meta-data android:name="com.google.android.gms.games.APP_ID"
                android:value="@string/app_id" />
            <meta-data android:name="com.google.android.gms.version"
                android:value="@integer/google_play_services_version"/>
            <activity
                android:name="PACKAGE_NAME.MYACTIVITY"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>

    </manifest>

我到处尝试和搜索过这个,也许其他人经历了同样的事情。

4 个答案:

答案 0 :(得分:2)

这个&#39;错误&#39;在测试我正在开发的应用程序时,给我带来了很多麻烦。

这与什么&#39; skm&#39;有关。在他的最后评论中说,但没有具体说明Gmail没有被同步。在我的情况下,试图同步Gmail并没有真正&#34;启用&#34;同步它只是同步它一次并保持不同步。所以我要做的就是进入:Settings->Data Usage->[Three dots button]->Auto-sync data.这样做可以启用同步功能,这样您就可以再次同步内容,同步所有内容,然后您可以取消选中您不想同步的内容。在此之后,Google Play服务的通知将再次收到。

希望它可以帮助其他人!

答案 1 :(得分:0)

在您的设备上转到:

 Settings ---> Apps ---> Google Play Services

然后检查通知CheckBox是否已设置。

答案 2 :(得分:0)

选择

   Settings > Apps > Google Play Services

然后勾选通知复选框

如果仍然无效,请发布清单文件的meta-data字段(同时对密钥进行模糊处理)。

答案 3 :(得分:0)

我遇到了同样的问题,但在重新同步@Whyser之类的所有信息之前,...我首先清除了Google Play服务和Google Play游戏的缓存。然后,当我回到Google Play游戏中的设置时,我看到多人切换已重置!我重新启动了电话,并开始了通知。