2016-02-10 102 views
2

我试图将GCM作为本地包包含。这运行作为后台服务,但我不能让构建成功编译。我有android.playService.gcm = true作为构建提示。但我得到了folliwng错误。 com.google.android.gms似乎没有任何内容被提取。我也启用了gradle build。com.google.android.gms.iid包不存在import com.google.android.gms.iid.InstanceID

/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RixmaInstanceIDListenerService.java:15: error: package com.google.android.gms.iid does not exist 
import com.google.android.gms.iid.InstanceID; 
           ^
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RixmaInstanceIDListenerService.java:16: error: package com.google.android.gms.iid does not exist 
import com.google.android.gms.iid.InstanceIDListenerService; 
           ^
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RixmaInstanceIDListenerService.java:18: error: cannot find symbol 
public class RixmaInstanceIDListenerService extends InstanceIDListenerService { 
                ^
    symbol: class InstanceIDListenerService 
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RegistrationIntentService.java:15: error: cannot find symbol 
import com.google.android.gms.gcm.GcmPubSub; 
           ^
    symbol: class GcmPubSub 
    location: package com.google.android.gms.gcm 
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RegistrationIntentService.java:17: error: package com.google.android.gms.iid does not exist 
import com.google.android.gms.iid.InstanceID; 
           ^
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RixmaGcmListenerService.java:20: error: cannot find symbol 
import com.google.android.gms.gcm.GcmListenerService; 
           ^
    symbol: class GcmListenerService 
    location: package com.google.android.gms.gcm 
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RixmaGcmListenerService.java:22: error: cannot find symbol 
public class RixmaGcmListenerService extends GcmListenerService { 
              ^
    symbol: class GcmListenerService 
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RixmaInstanceIDListenerService.java:34: error: cannot find symbol 
     startService(intent); 
     ^
    symbol: method startService(Intent) 
    location: class RixmaInstanceIDListenerService 
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RixmaInstanceIDListenerService.java:28: error: method does not override or implement a method from a supertype 
    @Override 
    ^
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RegistrationIntentService.java:40: error: cannot find symbol 
      InstanceID instanceID = InstanceID.getInstance(this); 
      ^
    symbol: class InstanceID 
    location: class RegistrationIntentService 
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RegistrationIntentService.java:40: error: cannot find symbol 
      InstanceID instanceID = InstanceID.getInstance(this); 
            ^
    symbol: variable InstanceID 
    location: class RegistrationIntentService 
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RegistrationIntentService.java:42: error: cannot find symbol 
        GoogleCloudMessaging.INSTANCE_ID_SCOPE, null); 
             ^
    symbol: variable INSTANCE_ID_SCOPE 
    location: class GoogleCloudMessaging 
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RegistrationIntentService.java:83: error: cannot find symbol 
     GcmPubSub pubSub = GcmPubSub.getInstance(this); 
     ^
    symbol: class GcmPubSub 
    location: class RegistrationIntentService 
/tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RegistrationIntentService.java:83: error: cannot find symbol 
     GcmPubSub pubSub = GcmPubSub.getInstance(this); 
         ^
    symbol: variable GcmPubSub 
    location: class RegistrationIntentService 

请指点我哪里可能会出错。 非常感谢

回答

1

旧标志使用播放服务6.5版*上面的方法在7.5版本中引入的,如果我没有记错

1

我们暂时禁用了包含here的Gradle构建功能。

只有太多的回归,所以现在应该回到旧的Gplay服务标志。

+0

是...的事情是,即使旧标志,它不不spcifically接受这些类: com.google.android.gms.iid.InstanceID com.google.android.gms.iid.InstanceIDListenerService com.google.android.gms.gcm.GcmListenerService; – davidwaf

相关问题