-1
嗨,大家我試圖建立一個新的推送通知應用程序,我遵循教程,所以我: 1- Myphp服務器上的Mysql數據庫 2- php項目使用Netbeans 3- Android應用程序使用googleplay自由和GCM使用eclipse推送通知Android,Php,MySql不起作用
我不知道我是否應該做一些事情,而不是在模擬器上運行應用程序,我應該運行php項目?
請人幫助我,當我在我的模擬器墜毀運行它,並得到這些錯誤
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;
}
請不要將錯誤發佈爲圖片,尤其是裁剪後的圖片。始終鏈接到您正在使用的教程。如果你無法根據教程獲得工作,並且不知道該怎麼做,那麼可以獲得更好的教程。 –
發表您的代碼和MainActivity行92 .... –
@ helldawg13I編輯帖子...你可以找到92行是我的發佈代碼第二thine –