- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试设置一个应用程序以使用 gcm 但每次我都收到 phone_registration_error 错误根据 Gcm 文档,此错误表示:
Incorrect phone registration with Google.
This phone doesn't currently support GCM.
但我不明白为什么我的它不受支持,我在真实的 android 设备和带有 google api 的模拟器上对此进行了测试
我的主要 Activity :
@Override
public void onCreate(Bundle savedInstanceState) {
checkNotNull(SENDER_ID, "SENDER_ID");
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
final String regId = GCMRegistrar.getRegistrationId(this);
Log.i(TAG, "registration id ===== "+regId);
if(regId.equals("")){
GCMRegistrar.register(this, SENDER_ID);
} else {
Log.v(TAG, "Already Registred");
}
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
还有我的 list :
最佳答案
GCM 仅适用于运行 android 2.2 或更新版本的设备。此外,GCM 仅在为设备安装了谷歌帐户时才有效。这也是谷歌推荐使用 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
的原因在 list 中,以便您确定该设备具有 Google 帐户。
关于android - GCM phone_registration_error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12772086/
我正在尝试设置一个应用程序以使用 gcm 但每次我都收到 phone_registration_error 错误根据 Gcm 文档,此错误表示: Incorrect phone registratio
我已迁移我的应用程序以使用新的 GCM 推送系统。它适用于数以千计的用户,但今天我遇到了一个使用带有 ICS 的三星 Galaxy S3 的用户,每次他尝试注册时都会收到 PHONE_REGISTRA
我正在使用 Google GCM 演示文件测试 GCM。该演示在我的设备上运行良好,但当我尝试在 Android 模拟器上对其进行测试时,出现以下错误: From GCM: error (PHONE_
我尝试在 Ice Cream Sandwich AVD 中运行我的 C2DM 应用程序,但它在 C2DM 期间提示 PHONE_REGISTRATION_ERROR > 注册。 相同的代码在 froy
我是一名优秀的程序员,十分优秀!