This plugin simplifies the usage of ADB's "Connect over Wi-Fi" feature.
- Connect an Android device via USB cable.
- Open the "ADB Wi-Fi" Tool Window (in the right-bottom corner).
- Click the "Connect" button.
- After a successful connection, you can unplug the USB cable.
-
Using IDE built-in plugin system:
Preferences > Plugins > Marketplace > Search for "ADB Wi-Fi" > Install Plugin
-
Manually:
Download the latest release and install it manually using Preferences > Plugins > ⚙️ > Install plugin from disk...
Open project in Intellij IDEA.
Available gradle tasks:
runIde
- launches a new instance of IDE with the plugin installed:- Execute
./gradlew runIde
or./gradlew runAndroidStudio
command in terminal
OR - Press
Ctrl
twice to open the Run Anything window and executegradle runIde
orgradle runAndroidStudio
command
- Execute
check
- runs linters and testsbuildPlugin
packages installable zip file
Distribution zip file will be available under./build/distributions/
You can choose which version of Android Studio runAndroidStudio
task launches by modifying version
property in ./build.gradle.kts
:
tasks {
...
// AndroidStudio releases list: https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html
val runAndroidStudio by intellijPlatformTesting.runIde.registering {
type = IntelliJPlatformType.AndroidStudio
version = "2025.1.2.11"
}
}