gpt4 book ai didi

wear-os - 不推荐使用构建错误 Bind_Listener

转载 作者:行者123 更新时间:2023-12-04 06:33:48 24 4
gpt4 key购买 nike

当我尝试构建我的 apk 时,它给了我错误提示

Error:(190) Error: The com.google.android.gms.wearable.BIND_LISTENER action is deprecated.



这是我现在的 AndroidManifest 外观
    <service
android:name=".MyDeviceListenerService"
android:enabled="true"
android:exported="true">
<intent-filter>
<action
android:name="com.google.android.gms.wearable.BIND_LISTENER"/>
</intent-filter>
</service

最佳答案

自 Play Services 8.2 起,Bind_Listener 已被弃用。

较新的方法是通过仅指定您想要获得通知的事件来使用细粒度的意图过滤器 API。

要始终从应用程序获取消息,请更改 Bind_Listener像这样的事情

<service
android:name=".MyDeviceListenerService"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.google.android.gms.wearable.MESSAGE_RECEIVED" />
<data android:scheme="wear" android:host="*" android:pathPrefix="/request-network" />
</intent-filter>
</service>

您可以在 documentation 上阅读更多相关信息。 .

关于wear-os - 不推荐使用构建错误 Bind_Listener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36934055/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com