针对传入通知的EnhancedIntentService警告

时间:2017-10-13 00:43:32

标签: android android-notifications intentservice

收到通知后,我的日志中出现两个错误

EnhancedIntentService: Service took too long to process intent: com.google.android.c2dm.intent.RECEIVE App may get closed

EnhancedIntentService: binding to the service failed

Google上没有任何一条消息,甚至EnhancedIntentService

相关代码:

    <service
        android:name="---.GcmMCIntentService"
        android:exported="false" >
        <intent-filter android:priority="10">
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
        </intent-filter>
    </service>

   <service
        android:name="---.GCMInstanceIDListenerService"
        android:exported="false">
        <intent-filter>
            <action android:name="com.google.android.gms.iid.InstanceID" />
        </intent-filter>
    </service>


    <service android:name="---.GCMRegIntentService"
             android:exported="false" >
        <intent-filter android:priority="5">
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
        </intent-filter>
    </service>

这是在8.0模拟器上。播放服务11.4.2 如果我可以显示任何其他代码,请告诉我。我发现好奇的是S.O.上根本没有关于这些错误消息的内容。或谷歌。

0 个答案:

没有答案