联想平板电脑是否支持c2dm服务器阻止?

时间:2012-10-31 14:24:13

标签: android configuration android-c2dm

我一直在为联想平板电脑寻找c2dm服务器,因为我的老板决定对我们的Android平板电脑使用绝对管理。我想知道联想的thinkpad平板电脑是否支持c2dm?我在他们的论坛上也有类似的问题,但联想支持需要永远在你的支持论坛上回复你。 下面是白皮书,它将提供更多详细信息,因此我不会偏离主题: http://www.absolute.com/shared/datasheets/am-mdm-ds-e.pdf 我将引用第2页中指向google c2dm的行: “可能不支持一些无法访问谷歌c2dm服务的Android系统”

我需要尽快完成这项工作,任何人都可以帮我解决这个问题吗?

实际问题是当绝对管理应用程序打开时,我让它与绝对mdm服务器通信,该服务器在设备向c2dm服务器发送请求后联系。但是在使其与mdm服务器通信的过程中,它给出了错误消息:“注册失败:连接错误”

某处谷歌c2dm服务器未被联系或被删除。

2 个答案:

答案 0 :(得分:2)

将其放入您的应用并在Lenovo平板电脑上启动

 // Make sure the device has the proper dependencies
GCMRegistrar.checkDevice(context);
// Make sure the manifest was properly set - comment out this line
// while developing the app, then uncomment it when it's ready.
GCMRegistrar.checkManifest(context);

我认为,如果联想设备支持谷歌帐户,他们应该支持c2dm / gcm

答案 1 :(得分:2)

您是否知道C2DM已被弃用且他们不接受任何新用户? as per their site

Important: C2DM has been officially deprecated as of June 26, 2012. This means that C2DM
has stopped accepting new users and quota requests. No new features will be added to C2DM. 
However, apps using C2DM will continue to work. Existing C2DM developers are encouraged to 
migrate to the new version of C2DM, called Google Cloud Messaging for Android (GCM). See the 
C2DM-to-GCM Migration document for more information. Developers must use GCM for new 
development.