针对android,Php,MySql的推送通知不起作用

时间:2016-03-02 19:37:25

标签: android google-cloud-messaging

大家好我正在尝试构建一个新的推送通知应用程序,我按照教程,所以我: 1- Myphp服务器上的Mysql数据库 使用Netbeans的2- php项目 3-使用googleplay liberary和使用eclipse的GCM的Android应用程序

我不知道我是否应该做某事而不是在模拟器上运行应用程序,我应该运行php项目???

请有人帮助我,因为当我在模拟器上运行它时,我遇到了崩溃并得到了这些错误

my locat errors

private boolean isGoogelPlayInstalled() {
   GoogleApiAvailability api = GoogleApiAvailability.getInstance();
   int resultCode = api.isGooglePlayServicesAvailable(this);
  if (resultCode != ConnectionResult.SUCCESS) {

      if (api.isUserResolvableError(resultCode)){

          api.getErrorDialog(this, resultCode, REQUEST_GOOGLE_PLAY_SERVICES);

     } else {
        Toast.makeText(getApplicationContext(),
              "Google Play Service is not installed",
              Toast.LENGTH_SHORT).show();
        finish();
     }
     return false;
  }
  return true;

}

1 个答案:

答案 0 :(得分:0)

将Google API用作模拟器系统映像,并将Google帐户添加到模拟器。