├── .github └── workflows │ ├── build.yml │ └── check-studio-compatibility.yml ├── .gitignore ├── .run ├── Run.run.xml └── RunLocal.run.xml ├── CHANGELOG.md ├── DEVELOP.md ├── LICENSE.txt ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── list-studio-versions.sh ├── release.sh ├── src ├── main │ ├── kotlin │ │ └── com │ │ │ └── developerphil │ │ │ └── adbidea │ │ │ ├── Application.kt │ │ │ ├── HelperMethods.kt │ │ │ ├── ObjectGraph.kt │ │ │ ├── ReflectKt.kt │ │ │ ├── action │ │ │ ├── AdbAction.kt │ │ │ ├── ClearDataAction.kt │ │ │ ├── ClearDataAndRestartAction.kt │ │ │ ├── ClearDataAndRestartWithDebuggerAction.kt │ │ │ ├── DisableMobileAction.kt │ │ │ ├── DisableWifiAction.kt │ │ │ ├── EnableMobileAction.kt │ │ │ ├── EnableWifiAction.kt │ │ │ ├── GrantPermissionsAction.kt │ │ │ ├── KillAction.kt │ │ │ ├── QuickListAction.kt │ │ │ ├── RestartAction.kt │ │ │ ├── RestartWithDebuggerAction.kt │ │ │ ├── RevokePermissionsAction.kt │ │ │ ├── RevokePermissionsAndRestartAction.kt │ │ │ ├── StartAction.kt │ │ │ ├── StartWithDebuggerAction.kt │ │ │ └── UninstallAction.kt │ │ │ ├── adb │ │ │ ├── AdbFacade.kt │ │ │ ├── AdbUtil.kt │ │ │ ├── Bridge.kt │ │ │ ├── DeviceResultFetcher.kt │ │ │ ├── ShellCommandsFactory.kt │ │ │ ├── UseSameDevicesHelper.kt │ │ │ └── command │ │ │ │ ├── ClearDataAndRestartCommand.kt │ │ │ │ ├── ClearDataAndRestartWithDebuggerCommand.kt │ │ │ │ ├── ClearDataCommand.kt │ │ │ │ ├── Command.kt │ │ │ │ ├── CommandList.kt │ │ │ │ ├── GrantPermissionsCommand.kt │ │ │ │ ├── KillCommand.kt │ │ │ │ ├── RestartPackageCommand.kt │ │ │ │ ├── RevokePermissionsAndRestartCommand.kt │ │ │ │ ├── RevokePermissionsCommand.kt │ │ │ │ ├── StartDefaultActivityCommand.kt │ │ │ │ ├── ToggleSvcCommand.kt │ │ │ │ ├── UninstallCommand.kt │ │ │ │ └── receiver │ │ │ │ └── GenericReceiver.kt │ │ │ ├── compatibility │ │ │ └── BackwardCompatibleGetter.kt │ │ │ ├── debugger │ │ │ └── Debugger.kt │ │ │ ├── preference │ │ │ ├── ApplicationPreferences.kt │ │ │ ├── ProjectPreferences.kt │ │ │ └── accessor │ │ │ │ ├── PreferenceAccessor.kt │ │ │ │ └── PreferenceAccessorImpl.kt │ │ │ └── ui │ │ │ ├── DeviceChooserDialog.form │ │ │ ├── DeviceChooserDialog.kt │ │ │ ├── DeviceChooserListener.kt │ │ │ ├── ModuleChooserDialogHelper.kt │ │ │ ├── MyDeviceChooser.kt │ │ │ └── NotificationHelper.kt │ └── resources │ │ └── META-INF │ │ └── plugin.xml └── test │ └── kotlin │ └── com │ └── developerphil │ └── adbidea │ ├── adb │ ├── FakeDevice.kt │ ├── ShellCommandsFactoryTest.kt │ ├── UseSameDevicesHelperTest.kt │ └── command │ │ ├── StartDefaultActivityCommandTest.kt │ │ └── receiver │ │ └── GenericReceiverTest.kt │ ├── compatibility │ └── BackwardCompatibleGetterTest.kt │ └── preference │ ├── ApplicationPreferencesTests.kt │ ├── ProjectPreferencesTests.kt │ └── accessor │ └── InMemoryPreferenceAccessor.kt └── website ├── adb_operations_popup.png ├── debug_howto.png └── find_actions.png /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-studio-compatibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/.github/workflows/check-studio-compatibility.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/.gitignore -------------------------------------------------------------------------------- /.run/Run.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/.run/Run.run.xml -------------------------------------------------------------------------------- /.run/RunLocal.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/.run/RunLocal.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/DEVELOP.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/gradlew.bat -------------------------------------------------------------------------------- /list-studio-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/list-studio-versions.sh -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/release.sh -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/Application.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/HelperMethods.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/HelperMethods.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/ObjectGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/ObjectGraph.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/ReflectKt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/ReflectKt.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/AdbAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/AdbAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/ClearDataAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/ClearDataAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/ClearDataAndRestartAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/ClearDataAndRestartAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/ClearDataAndRestartWithDebuggerAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/ClearDataAndRestartWithDebuggerAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/DisableMobileAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/DisableMobileAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/DisableWifiAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/DisableWifiAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/EnableMobileAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/EnableMobileAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/EnableWifiAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/EnableWifiAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/GrantPermissionsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/GrantPermissionsAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/KillAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/KillAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/QuickListAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/QuickListAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/RestartAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/RestartAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/RestartWithDebuggerAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/RestartWithDebuggerAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/RevokePermissionsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/RevokePermissionsAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/RevokePermissionsAndRestartAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/RevokePermissionsAndRestartAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/StartAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/StartAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/StartWithDebuggerAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/StartWithDebuggerAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/action/UninstallAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/action/UninstallAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/AdbFacade.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/AdbFacade.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/AdbUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/AdbUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/Bridge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/Bridge.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/DeviceResultFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/DeviceResultFetcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/ShellCommandsFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/ShellCommandsFactory.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/UseSameDevicesHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/UseSameDevicesHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/ClearDataAndRestartCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/ClearDataAndRestartCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/ClearDataAndRestartWithDebuggerCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/ClearDataAndRestartWithDebuggerCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/ClearDataCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/ClearDataCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/Command.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/Command.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/CommandList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/CommandList.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/GrantPermissionsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/GrantPermissionsCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/KillCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/KillCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/RestartPackageCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/RestartPackageCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/RevokePermissionsAndRestartCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/RevokePermissionsAndRestartCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/RevokePermissionsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/RevokePermissionsCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/StartDefaultActivityCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/StartDefaultActivityCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/ToggleSvcCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/ToggleSvcCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/UninstallCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/UninstallCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/adb/command/receiver/GenericReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/adb/command/receiver/GenericReceiver.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/compatibility/BackwardCompatibleGetter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/compatibility/BackwardCompatibleGetter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/debugger/Debugger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/debugger/Debugger.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/preference/ApplicationPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/preference/ApplicationPreferences.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/preference/ProjectPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/preference/ProjectPreferences.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/preference/accessor/PreferenceAccessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/preference/accessor/PreferenceAccessor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/preference/accessor/PreferenceAccessorImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/preference/accessor/PreferenceAccessorImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/ui/DeviceChooserDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/ui/DeviceChooserDialog.form -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/ui/DeviceChooserDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/ui/DeviceChooserDialog.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/ui/DeviceChooserListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/ui/DeviceChooserListener.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/ui/ModuleChooserDialogHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/ui/ModuleChooserDialogHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/ui/MyDeviceChooser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/ui/MyDeviceChooser.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/developerphil/adbidea/ui/NotificationHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/kotlin/com/developerphil/adbidea/ui/NotificationHelper.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/test/kotlin/com/developerphil/adbidea/adb/FakeDevice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/test/kotlin/com/developerphil/adbidea/adb/FakeDevice.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/developerphil/adbidea/adb/ShellCommandsFactoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/test/kotlin/com/developerphil/adbidea/adb/ShellCommandsFactoryTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/developerphil/adbidea/adb/UseSameDevicesHelperTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/test/kotlin/com/developerphil/adbidea/adb/UseSameDevicesHelperTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/developerphil/adbidea/adb/command/StartDefaultActivityCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/test/kotlin/com/developerphil/adbidea/adb/command/StartDefaultActivityCommandTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/developerphil/adbidea/adb/command/receiver/GenericReceiverTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/test/kotlin/com/developerphil/adbidea/adb/command/receiver/GenericReceiverTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/developerphil/adbidea/compatibility/BackwardCompatibleGetterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/test/kotlin/com/developerphil/adbidea/compatibility/BackwardCompatibleGetterTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/developerphil/adbidea/preference/ApplicationPreferencesTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/test/kotlin/com/developerphil/adbidea/preference/ApplicationPreferencesTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/developerphil/adbidea/preference/ProjectPreferencesTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/test/kotlin/com/developerphil/adbidea/preference/ProjectPreferencesTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/developerphil/adbidea/preference/accessor/InMemoryPreferenceAccessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/src/test/kotlin/com/developerphil/adbidea/preference/accessor/InMemoryPreferenceAccessor.kt -------------------------------------------------------------------------------- /website/adb_operations_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/website/adb_operations_popup.png -------------------------------------------------------------------------------- /website/debug_howto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/website/debug_howto.png -------------------------------------------------------------------------------- /website/find_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbreault/adb-idea/HEAD/website/find_actions.png --------------------------------------------------------------------------------