gpt4 book ai didi

android - 上传到 Play 商店后 GCM 停止工作

转载 作者:行者123 更新时间:2023-11-30 03:50:50 26 4
gpt4 key购买 nike

我创建了一个使用 Google could 消息传递的应用程序,它运行良好。然后,我使用新的 keystore 导出已签名的应用程序。上传到playstore在发布页面上链接发件人 ID。我卸载了未签名的应用程序并从 Play 商店安装了新应用程序,但现在我无法接收消息。服务器控制台显示消息已成功发送以及消息 ID,但设备上没有通知。

最佳答案

检查您的 list 文件。如果您可以在没有

的情况下使用 GCM
android:protectionLevel=signature

您可能在权限对象中使用了不正确的包名称。检查您是否确实将包名称更改为您的应用程序包名称。

所以代替:

<permission android:name="com.google.android.gcm.demo.app.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.google.android.gcm.demo.app.permission.C2D_MESSAGE" />

使用:

<permission android:name="YOUR.PACKAGENAME.HERE.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="YOUR.PACKAGENAME.HERE.permission.C2D_MESSAGE" />

关于android - 上传到 Play 商店后 GCM 停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14169104/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com