Skip to content

Commit 3323b40

Browse files
Merge pull request #58 from Grigory-Rylov/feature/device-search-logging
Fix: remove hasInitialDeviceList() call that throws UnsupportedMethodException
2 parents 02ce76b + 89cb71e commit 3323b40

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pluginName=YALI
1717
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1818
# for insight into build numbers and IntelliJ Platform versions.
1919
sinceBuild=253.28294.334
20-
pluginVersion=26.04.12.0
20+
pluginVersion=26.05.25.0
2121
# Use the latest of Android plugin versionAdd commentMore actions
2222
# see https://github.com/JetBrains/intellij-platform-gradle-plugin/releases
2323
# androidPluginVersion=251.25410.109

src/main/kotlin/com/github/grishberg/androidstudio/plugins/AdbWrapper.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class AdbWrapperImpl(project: Project) : AdbWrapper {
1717
return false
1818
}
1919

20-
return androidBridge.isConnected && androidBridge.hasInitialDeviceList()
20+
return androidBridge.isConnected
2121
}
2222

2323
override fun connectedDevices(): List<IDevice> {

0 commit comments

Comments
 (0)