Codenameone 包com.google.android.gms.iid不存在导入com.google.android.gms.iid.InstanceID

Codenameone 包com.google.android.gms.iid不存在导入com.google.android.gms.iid.InstanceID,codenameone,Codenameone,我试图将GCM作为本机捆绑包包括在内。这是作为后台服务运行的,但我无法成功编译构建。我有android.playService.gcm=true作为构建提示。但是我犯了错误。似乎com.google.android.gms中没有任何内容被发现。我还启用了gradle build /tmp/build6570310071572581493xxx/RixmaM/src/main/java/com/rixma/mobile/RixmaInstanceIDListenerService.java:15:

我试图将GCM作为本机捆绑包包括在内。这是作为后台服务运行的,但我无法成功编译构建。我有android.playService.gcm=true作为构建提示。但是我犯了错误。似乎com.google.android.gms中没有任何内容被发现。我还启用了gradle build

/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
请告诉我哪里可能出错。
非常感谢

我们暂时禁用了所述的Gradle构建功能


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

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

是的。。。即使使用旧标志,它也不特别接受这些类:com.google.android.gms.iid.InstanceID com.google.android.gms.iid.InstanceIDListenerService com.google.android.gms.gcm.GcmListenerService;