Contents

Build wirelessly to Android using Unity

Contents

I’ve been working on some Android application in Unity lately and with just two USB ports on my MacBook, it is annoying to remove the mouse and keyboard to plug in my Android device when building.

But this can also be done wirelessly using

1
adb

On Mac it is really easy to to get up and running. Using Homebrew just write:

1
brew install android-platform-tools

Plug in your Android device and write:

1
adb tcpip 555

Unplug device and write:

1
adb connect deviceIP

Now you can just build like normal in Unity.