When I try to build my apk, it gives me error saying
Error:(190) Error: The com.google.android.gms.wearable.BIND_LISTENER action is deprecated.
This is my AndroidManifest looks right now
<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
intent-filter
parameters. Here's the official announcement and documentation: android-developers.blogspot.com/2016/04/… – Skinny