Android Wearable服务本质上是一个Android服务组件(如果错误,请更正我)。我们在下面的清单文件中有它。
<service android:name=".WearableService">
<intent-filter>
<action android:name="com.google.android.gms.wearable.BIND_LISTENER" />
</intent-filter>
</service>
据我所知,有很多应用会杀死服务以释放内存,我们是否需要做任何事情让可穿戴服务一旦被杀死就重生,或者它是一个永远不会被杀死的系统服务?