我想在Android上實現GCM客戶端。 繼蒞臨指導 https://developers.google.com/cloud-messaging/android/client
我已經下載了配置文件,並複製了谷歌,services.json文件到應用程序/目錄中的項目。Android Studio無法識別InstanceID類
我還增加了在該項目的的build.gradle
classpath 'com.google.gms:google-services:1.3.0-beta1'
和插件的依賴於應用級的build.gradle
apply plugin: 'com.google.gms.google-services'
我也包括了谷歌Play服務SDK
compile 'com.google.android.gms:play-services:6.+'
我也更新了t他AndroidManifest.xml文件如下 https://developers.google.com/cloud-messaging/android/client
顯示要獲得註冊的原因,當我使用下面的代碼
InstanceID instanceID = InstanceID.getInstance(this);
的Android Studio不承認階級。我收到「無法解析符號'InstaceID'」。任何理由爲什麼發生這種情況?
如果問題解決了,那麼請在這裏發帖,我也面臨同樣的問題 –