Skip to content Skip to sidebar Skip to footer

Simple UDP Broadcast Not Working On Android Wear

All I want is my UDP broadcast to work: @Override protected String doInBackground(String[] params) { try { DatagramSocket datagramSocket = new DatagramS

Solution 1:

You are correct: Android Wear devices do not have access to the internet themselves: your phone app needs to handle all internet connections and forward the results to your Wearable app via the Wear Data Layer


Post a Comment for "Simple UDP Broadcast Not Working On Android Wear"